一个愤青
发布时间:2015-03-18 09:20:55
#include <stdio.h>typedef struct persion { const char *name; int age;} persion[1], persion_t;int main(void){ struct persion a; struct persion *p = NULL; struct persion *q = NULL; .........【阅读全文】
发布时间:2015-03-17 21:39:39
#include typedef struct _stu { const char *name; int number;} stu;#define func(...) my_func((struct _stu){__VA_ARGS__})void my_func(struct _stu ms){ printf("%s: %d\n", ms.name.........【阅读全文】
发布时间:2015-03-17 16:23:51
转载请注明:http://blog.csdn.net/ict2014/article/details/17394259SkipList在leveldb以及lucence中都广为使用,是比较高效的数据结构。由于它的代码以及原理实现的简单性,更为人们所接受。我们首先看看SkipList的定义,为什么叫跳跃表?“ Skip lists are data structures that u.........【阅读全文】