码迷,mamicode.com
首页 >  
搜索关键字:wall    ( 568个结果
【C/C++学院】(22)Mysql数据库编程--C语言操作数据库
makefile .SUFFIXES: .c .o CC=gcc SRCS=mysql1.c OBJS=$(SRCS:.c=.o) EXEC=mysql1 all: $(OBJS) $(CC) -o $(EXEC) $(OBJS) -lmysqlclient @echo '-------------ok--------------' .c.o: $(CC) -Wall -...
分类:数据库   时间:2015-03-06 22:16:48    阅读次数:231
hdu 1045 Fire Net DFS入门题
Problem Description Suppose that we have a square city with straight streets. A map of a city is a square board with n rows and n columns, each representing a street or a piece of wall. A blockhouse is a small castle that has four openings through which ...
分类:Web程序   时间:2015-03-06 11:21:23    阅读次数:221
hdu1072【bfs可重复走】
大意:给一个矩阵 有一个六秒之内会爆炸的炸弹 爆炸事件在数值为4的位置会重置为60: The area is a wall, Ignatius should not walk on it.1: The area contains nothing, Ignatius can walk on it.2....
分类:其他好文   时间:2015-03-04 20:57:53    阅读次数:138
批量编译目录下文件的Makefile
1.多C文件生成各自可执行文件的Makefile如果一个目录下有很多C文件,且每个C文件都能生成一个独立的可执行文件,那么想全编译这些C文件并生成各作的可执行文件,在该目录下编写一个Makefile文件,就能做到时。#定义所需变量C = gccCFLAGS = -Wall -O -g -o #编译链...
分类:其他好文   时间:2015-03-04 18:20:06    阅读次数:125
wall time和monotonic time[转载]
在一些系统调用中需要指定时间是用CLOCK_MONOTONIC还是CLOCK_REALTIME,以前总是搞不太清楚它们之间的差别,现在终于有所理解了。 CLOCK_MONOTONIC是monotonic time,而CLOCK_REALTIME是wall time。 monotonic ti...
分类:其他好文   时间:2015-03-02 12:59:46    阅读次数:149
wall time和monotonic time[转载]
在一些系统调用中需要指定时间是用CLOCK_MONOTONIC还是CLOCK_REALTIME,以前总是搞不太清楚它们之间的差别,现在终于有所理解了。 CLOCK_MONOTONIC是monotonic time,而CLOCK_REALTIME是wall time。 monotonic ti...
分类:其他好文   时间:2015-03-02 12:50:16    阅读次数:147
【二分答案+贪心】UVa 1335 - Beijing Guards
Beijing was once surrounded by four rings of city walls: the Forbidden City Wall, the Imperial City Wall, the Inner City Wall, and finally the Outer C...
分类:其他好文   时间:2015-02-27 16:27:30    阅读次数:183
makefile 基础知识
$@ 目标文件名$< 第一个依赖文件名$^ 规则所有依赖文件列表如果不想让执行语句被打印出来,就在语句前面加上@符号模式规则%.o:%.c后缀规则.c.o生成单进程的MakefilePHONY:cleanOBJECTS = main.o add.o sub.oCFLAGS = -Wall -gCC....
分类:其他好文   时间:2015-02-26 11:30:19    阅读次数:105
How an Undocumented Immigrant From Mexico Became a Star at Goldman Sachs
How an Undocumented Immigrant From Mexico Became a Star at Goldman SachsJulissa Arcewent from selling funnel cakes in Texas to derivatives at Wall Str...
分类:其他好文   时间:2015-02-26 11:27:11    阅读次数:140
【HDOJ】1484 Basic wall maze
BFS。 1 /* 1484 */ 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 using namespace std; 9 10 typedef struct {11 int x, y;...
分类:其他好文   时间:2015-02-21 13:06:30    阅读次数:174
568条   上一页 1 ... 42 43 44 45 46 ... 57 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!