上一页 1 ··· 4 5 6 7 8 9 下一页

2014年10月17日

Codeforces Round #273 (Div. 2)-A. Initial Bet

摘要: http://codeforces.com/contest/478/problem/AA. Initial Bettime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandar... 阅读全文

posted @ 2014-10-17 18:39 angle_qqs 阅读(194) 评论(0) 推荐(0)

2014年10月15日

队列

摘要: 1#include2#include3#include45typedefintQElemType;67typedefstructQNode{8QElemTypedata;9structQNode*next;10}QNode,*QueuePtr;1112typedefstruct{13QueuePt... 阅读全文

posted @ 2014-10-15 22:04 angle_qqs 阅读(320) 评论(0) 推荐(0)

摘要: 1#include2#include3#include4#include56#defineOVERFLOW07#defineTRUEtrue8#defineFALSEfalse9#defineOK110#defineERROR01112#defineSTACK_INIT_SIZE10//存储空间初始... 阅读全文

posted @ 2014-10-15 20:40 angle_qqs 阅读(173) 评论(0) 推荐(0)

Codeforces Round #272 (Div. 2)-C. Dreamoon and Sums

摘要: http://codeforces.com/contest/476/problem/CC. Dreamoon and Sumstime limit per test1.5 secondsmemory limit per test256 megabytesinputstandard inputoutp... 阅读全文

posted @ 2014-10-15 19:42 angle_qqs 阅读(192) 评论(0) 推荐(0)

循环链表

摘要: 1#include2#include34typedefstructCLNode{5intdata;6structCLNode*next;7}CLNode,*CLinkList;89//产生空的双向循环链表10voidInitCL(CLinkListCL){11if(CL!=NULL){12CL->... 阅读全文

posted @ 2014-10-15 17:22 angle_qqs 阅读(295) 评论(0) 推荐(0)

双向链表

摘要: 1#include2#include3#include4#include56#defineOVERFLOW07#defineTRUEtrue8#defineFALSEfalse9#defineOK110#defineERROR01112typedefintElemType;13typedefboo... 阅读全文

posted @ 2014-10-15 13:28 angle_qqs 阅读(241) 评论(0) 推荐(0)

2014年10月14日

Codeforces Round #272 (Div. 2)-B. Dreamoon and WiFi

摘要: http://codeforces.com/contest/476/problem/BB. Dreamoon and WiFitime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputs... 阅读全文

posted @ 2014-10-14 23:47 angle_qqs 阅读(267) 评论(0) 推荐(0)

Codeforces Round #272 (Div. 2)-A. Dreamoon and Stairs

摘要: http://codeforces.com/contest/476/problem/AA. Dreamoon and Stairstime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutpu... 阅读全文

posted @ 2014-10-14 21:53 angle_qqs 阅读(282) 评论(0) 推荐(0)

单链表

摘要: 1#include2#include3#include4#include56//联系人节点结构体7typedefstruct_LinkNode{8charname[10];//姓名9charphone[15];//电话10struct_LinkNode*next;//下一个联系人指针11}Link... 阅读全文

posted @ 2014-10-14 21:36 angle_qqs 阅读(227) 评论(0) 推荐(0)

2014年10月9日

hrbust-1545-基础数据结构——顺序表(2)

摘要: http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1545基础数据结构——顺序表(2)Time Limit: 1000 MSMemory Limit: 10240 KTotal Submit: 412(1... 阅读全文

posted @ 2014-10-09 21:25 angle_qqs 阅读(337) 评论(0) 推荐(0)

上一页 1 ··· 4 5 6 7 8 9 下一页

导航