
C
文章平均质量分 75
Baileys0530
这个作者很懒,什么都没留下…
展开
-
static int 与 int 的区别
我在网上找了很多相关资料,但是因为不是计算机专业的,对“类”的原创 2014-07-08 09:14:32 · 54720 阅读 · 12 评论 -
新的起点
参加学校的ACM/ICPC暑假ji'xu原创 2014-07-07 15:07:53 · 900 阅读 · 0 评论 -
POJ 2051 优先队列/小顶堆O(klog(n))轻松实现
#include typedef struct node{ int ID; int period; long long time;}Node;Node heap[1005];static int hlength;int down(int p){ int q = 2 * p; Node a = heap[p]; while(q <= hlength) { if(q <原创 2014-07-10 09:24:58 · 1055 阅读 · 0 评论