51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Etc
leetcode778
题目的提示grid[i][j]位于区间[0,...,N*N-1]内。所以想到的是遍历0到N*N-1 如果满足就返回 先定义一个满足优先队列的beanstaticclassTmoimplementsComparable<Tmo>{publicintx;publicinty;publicin...
代码星球
·
2021-02-06
leetcode778
利用fgetc合并2个源文件的内容,到一个新的文件中
#include<stdio.h>#include<stdlib.h>//功能:合并2个源文件的内容,到一个新的文件中intmain(inta,char*argv[]){if(a!=4){printf("请输入3个文件路径:%s",argv[0]);exit(1);}FILE*fp1,*fp2,...
代码星球
·
2021-02-02
利用
fgetc
合并
2个
源文件
利用fgetc统计文件所在字节 和 总行数 和单词数
#include<stdio.h>#include<stdlib.h>#defineIS_WHITE_SPACE(c)((c)==''||(c)==''||(c)=='')?1:0//统计文件:内容大小字节和函数intmain(inta,char*argv[]){if(a!=2){printf(...
代码星球
·
2021-02-02
利用
fgetc
统计
文件
所在
C语言利用fgetc复制拷贝文件内容
#include<stdio.h>#include<stdlib.h>//文件的内容复制intmain(inta,char*argv[]){if(a!=3){printf("useage:%ssource!",argv[0]);exit(1);}FILE*fp1,*fp2;fp1=fopen(a...
代码星球
·
2021-02-02
语言
利用
fgetc
复制
拷贝
netcat
在网络工具中有“瑞士军刀”美誉的NetCat一个可以透过使用TCP或UDP协议的网络连接去读写数据。它被设计成一个稳定的后门工具, 能够直接由其它程序和脚本轻松驱动在windows下使用下载后解压,win+R-->cmd-->进入到安装目录nc-helpeg: 查看某个端口是否开启其他的,待续,...
代码星球
·
2021-02-01
netcat
Linux /etc/issue 和 /etc/issue.net的作用和区别
1./etc/motd /etc/motd即messageoftoday(布告栏信息),每次用户登录时,/etc/motd文件的内容会显示在用户的终端.系统管理员可以在文件中编辑系统活动消息,例如:管理员通知用户系统何时进行软件或硬件的升级、何时进行系统维护等.如果shell支持中文,还可以使用中文,这样看起...
代码星球
·
2021-01-30
etc
Linux
issue
issue.net
作用
LeetCode-11-7
1.ReverseStringWriteafunctionthattakesastringasinputandreturnsthestringreversed.Example:Givens="hello",return"olleh".1.可以直接用String的reverse方法,就是要注意的是要用StringBuil...
代码星球
·
2021-01-26
LeetCode-11-7
LeetCode-11-6
1. TwoSumGivenanarrayofintegers,return indices ofthetwonumberssuchthattheyadduptoaspecifictarget.Youmayassumethateachinputwouldhave ex...
代码星球
·
2021-01-26
LeetCode-11-6
LeetCode-day05
45. SingleNumber在个数都为2的数组中找到个数为1的数46. MissingNumber在数组中找到从0到n缺失的数字47. FindtheDifference找两个字符串总t中多出来的那个字符48. LinkedListCycle判断一个链表是否有环49.&nbs...
代码星球
·
2021-01-26
LeetCode-day05
LeetCode-day04
35. SameTree判断两棵树相同36. InvertBinaryTree翻转树37. SymmetricTree判断树是不是镜像对称的38. MaximumDepthofBinaryTree最大深度39. MinimumDepthofBinaryTre...
代码星球
·
2021-01-26
LeetCode-day04
LeetCode-day03
28. BestTimetoBuyandSellStock买卖股票的最好时间29. BestTimetoBuyandSellStockII买卖股票2(多次买入,一次卖出)最大利润30. LengthofLastWord最后一个单词的长度31. PlusOne大数+132.&nbs...
代码星球
·
2021-01-26
LeetCode-day03
LeetCode-day01&02
感觉还好,坚持住就行,毕竟智商不够1. LengthofLastWord求一个数组的最后一个单词的长度2. PlusOne 大数加13. AddBinary二进制加法4. Sqrt(x) 求一个数的开方5. ValidPerf...
代码星球
·
2021-01-26
LeetCode-day01
写了一个方便leetcode刷题的谷歌浏览器插件
平时习惯了在leetcode上的网页刷题,唯一缺点常用的几个主题不太好用,主要是不能自定义背景色,便写了一个插件来用,插件代码已经上传到了github地址:https://github.com/junlancer/setBackgroundColor怎么下载使用:下载这三个文件,然后本地新建一个文件夹,名字可以为set...
代码星球
·
2021-01-24
写了
一个
方便
leetcode
题的
LeetCode 53 ,分治解
classSolution{publicintmaxSubArray(int[]nums){if(nums==null||nums.length==0)return0;returnmaxSubArray(nums,0,nums.length-1);}privateintmaxSubArray(int[]nums,int...
代码星球
·
2021-01-24
LeetCode
分治
leetcode 211. Add and Search Word
Designadatastructurethatsupportsthefollowingtwooperations:voidaddWord(word)boolsearch(word)search(word)cansearchaliteralwordoraregularexpressionstringcontaining...
代码星球
·
2021-01-23
leetcode
211.
Add
and
Search
首页
上一页
...
20
21
22
23
24
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他