摘要: /*实现单向链表的增删改查 */#include <malloc.h>#include <stdio.h>#include<stdlib.h>#define LEN sizeof(node) typedef struct node{ int num; struct node *next;}node, 阅读全文
posted @ 2016-08-18 09:34 水生2016 阅读(7751) 评论(0) 推荐(0) 编辑