
数据结构
清风--旋叶
eline
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
单链表反转O(N)
单链表反转 #include #include #include #define maxn 100 typedef struct node { int data; struct node *next; }Lnode,*Link; Link create(Link p,int num) { Link temp=NULL; temp=(Link)malloc(si原创 2014-06-23 13:52:17 · 949 阅读 · 0 评论 -
hdu 1509 Windows Message Queue(优先队列)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1509 Problem Description Message queue is the basic fundamental of windows system. For each process, the system maintains a message queue. If somet原创 2014-08-08 15:53:37 · 665 阅读 · 0 评论