摘要:
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 ... 阅读全文