Go to My Blog
Go to Lin's Blog
摘要: 双链表:LIST_ENTRY:typedef struct _LIST_ENTRY { struct _LIST_ENTRY *Flink; follow: next entry, header if it is the last entry in the list struct _LIST_ENTRY *Blink; before: previous entry, header if it is the first entry in the list} LIST_ENTRY, *PLIST_ENTRY;链表空是,header->Flink ==... 阅读全文
posted @ 2013-09-26 09:28 一ke小小草 阅读(929) 评论(0) 推荐(0) 编辑