摘要: 1 #include 2 #include 3 4 typedef int datatype; 5 typedef struct node/*链表的每一个节点都是结构体*/ 6 { 7 datatype data; 8 struct node *next; 9 }linklist;/*linklist 是struct node 的别名,... 阅读全文
posted @ 2016-06-15 09:25 自由石匠 阅读(237) 评论(0) 推荐(0) 编辑