2013年8月23日

摘要: 1 #ifndef _LIST_H 2 #define _LIST_H 3 #include"stdio.h" 4 #define _INLINE_ static inline 5 6 struct list_head { 7 struct list_head *next, *prev; 8 }; 阅读全文
posted @ 2013-08-23 23:45 寻找心的巨人 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1 #include"stdio.h" 2 #include"malloc.h" 3 class Queue 4 { 5 private: 6 typedef struct queue 7 { 8 int data; 9 struct queue *next; 10 }link; 11 link*t 阅读全文
posted @ 2013-08-23 23:37 寻找心的巨人 阅读(469) 评论(0) 推荐(0) 编辑

导航