2013年10月11日
摘要: 1 //adlist.h 2 #ifndef __ADLIST__H__ 3 #define __ADLIST__H__ 4 5 typedef struct listNode_ { 6 struct listNode_ *prev; 7 struct listNode_ *next; 8 void *value; 9 } listNode;10 11 typedef struct listIter_ {12 listNode *next;13 int direction;14 }listIter;15 16 typedef struct List_ {17 ... 阅读全文
posted @ 2013-10-11 21:47 笔记吧... 可能只有自己看得懂 阅读(621) 评论(0) 推荐(0) 编辑