摘要: 待补 阅读全文
posted @ 2018-08-24 19:35 2018年8月10日注册 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 typedef struct node 4 { 5 int data; 6 struct node *next; 7 }Node; //创建一个带头结点的空链表 int createList(Node ** head) { *head = (Node*)malloc(sizeof(Node)); ... 阅读全文
posted @ 2018-08-24 19:26 2018年8月10日注册 阅读(387) 评论(0) 推荐(0) 编辑