上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: 1 #include 2 #include 3 #include 4 #include 5 #define CL(x, y) memset(x, y, sizeof(x)) 6 using namespace std; 7 const int MAX = 28; 8 int N, a, b... 阅读全文
posted @ 2015-03-09 17:18 PastLIFE 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #define CL(x, y) memset(x,y,sizeof(x)) 6 using namespace std; 7 const int MAX = 200005;//100005太小了?... 阅读全文
posted @ 2015-03-09 12:47 PastLIFE 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #define sc(x) scanf("%d",&(x)) 8 #define pf(x) printf("%d\n", x) 9 #define ... 阅读全文
posted @ 2015-03-09 10:50 PastLIFE 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 注意结构体队列的使用,在队列中,一条完整的路径才是正确的,中间的歧路最后还是走不通转载:http://blog.csdn.net/yulanarti/article/details/1787971 ——> 说明sprintf()的作用注意 sprintf(num, "%d", cur.num);//... 阅读全文
posted @ 2015-03-08 22:10 PastLIFE 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 转载:http://www.cnblogs.com/nerxious/archive/2013/01/25/2876489.html匿名内部类也就是没有名字的内部类正因为没有名字,所以匿名内部类只能使用一次,它通常用来简化代码编写但使用匿名内部类还有个前提条件:必须继承一个父类或实现一个接口 阅读全文
posted @ 2015-03-06 12:41 PastLIFE 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #define sc(x,y) scanf("%d %d",&(x),&(y)) 6 #define pf(x) printf("%d\n", x) 7 using namespace std; 8... 阅读全文
posted @ 2015-03-04 21:31 PastLIFE 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #define CL(x, y) memset(x, y, sizeof(x)) 5 using namespace std; 6 const int INF = 1 >ch) 18 { 19 ... 阅读全文
posted @ 2015-03-04 19:28 PastLIFE 阅读(678) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 char maze[8][8]; 7 int n, m, t; 8 int mx, my, X, Y; 9 int flag, tt;10 int Move[4][2]= {... 阅读全文
posted @ 2015-03-04 14:13 PastLIFE 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #define pf(x) printf("%d\n", x) 4 using namespace std; 5 const int MAX = 105; 6 char oil[MAX][MAX]; 7 int Move[8][2]= {{1,0... 阅读全文
posted @ 2015-03-03 19:34 PastLIFE 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 装载:http://blog.csdn.net/maggiedorami/article/details/7944459java提供了一组基本数据类型,包括boolean, byte, char, short, int, long, float, double. 同时,java也提供了这些类型的封装... 阅读全文
posted @ 2015-03-02 12:46 PastLIFE 阅读(242) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页