摘要: 2013-04-22 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 struct node 5 { 6 int num; 7 struct node *next; 8 }; 9 void creat(struct node **head) 10 { 11 *head = NULL; 12 } 13 void insert_node(struct node **head,struct node **newnode) //建立链表遍历 14 { 15 if(*head == NULL) 16 ... 阅读全文
posted @ 2013-04-22 21:39 菜鸟上路ING 阅读(425) 评论(0) 推荐(0) 编辑