摘要:
#include #include typedef struct _ListHead{ struct _ListHead* pre; struct _ListHead* next;} ListHead;typedef struct _Data{ ListHead list_head; int id;} Data;int main(){ int i =0; const int maxData = 32; Data* head = NULL; Data* tail = NULL; Data* newData= NULL; Data* pD... 阅读全文
posted @ 2013-09-17 22:30 晓彻 阅读(282) 评论(0) 推荐(0) 编辑