Problem Given a 2D grid, each cell is either a wall 2, an house 1 or empty 0 (the number zero, one, two), find the place to build a post office, the d ...
分类:
其他好文 时间:
2017-05-15 09:48:26
阅读次数:
296
DescriptionGiven a 2D grid, each cell is either a wall 2, a zombie 1 or people 0 (the number zero, one, two).Zombies can turn the nearest people(up/do ...
分类:
其他好文 时间:
2017-05-14 12:22:11
阅读次数:
357
在Fedora 13 系统上编译busybox(非交叉编译)产生错误 root@localhost # make ... gcc -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused -Wularations -Wde ...
分类:
其他好文 时间:
2017-05-13 14:23:46
阅读次数:
165
GCC: -Wall : 打开警告标志 -std=standard : -ansi 相等 -std=c89 -ansi : 指定代码应该符合什么标准。 -c : Compile and assemble, but do not link. [-Dmacro[=defn]...] : 定义宏 make ...
分类:
其他好文 时间:
2017-05-13 11:26:08
阅读次数:
220
-g为了调试用的加个-g是为了gdb用,不然gdb用不到-ooutput_filename,确定输出文件的名称为output_filename,同时这个名称不能和源文件同名。如果不给出这个选项,gcc就给出预设的可执行文件a.out。-E:仅执行编译预处理;-S:将C代码转换为汇编代码;-Wall:显示警告信息;-c..
分类:
其他好文 时间:
2017-05-09 09:34:06
阅读次数:
196
Problem Description A number of rectangular posters, photographs and other pictures of the same shape are pasted on a wall. Their sides are all vertic ...
分类:
其他好文 时间:
2017-04-29 12:58:03
阅读次数:
210
ESC:-E预处理,-S编译,-C汇编 -o 输出 -I[头文件] 包含头文件 -D [宏定义] 添加宏定义 -O [数字] 数值为0-3,0不优化,3最优化,默认值1 -Wall 输出编译过程的提示信息 -g 添加调试信息 -L [库所在的路径] -l [库的名称] 举例说明(预处理器->编译器- ...
分类:
其他好文 时间:
2017-04-28 22:07:05
阅读次数:
116
OJ题目:click here~~ 题目分析:给n个数。从这n个数中选择i个数,共同拥有c(n , i)种情况。将每种情况中的i个数异或,将这c(n , i)个异或结果求和,就得到第i个输出结果,i属于[1 n]。 求x个数的异或,等于分别对x个数的同一二进制位进行异或,然后加权求和。于是将n个数表 ...
分类:
其他好文 时间:
2017-04-28 13:54:30
阅读次数:
128
makefile 自动化变量: $@ : 规则的目标文件名 例如:main:main.o test.o g++ -Wall -g main.o test.o -o main 可以写成: main:main.o test.o g++ -Wall -g main.o test.o -o $@ g++ - ...
分类:
系统相关 时间:
2017-04-25 23:35:16
阅读次数:
276
There is a brick wall in front of you. The wall is rectangular and has several rows of bricks. The bricks have the same height but different width. Yo ...
分类:
其他好文 时间:
2017-04-23 14:21:50
阅读次数:
135