摘要: 单向有头不循环链表 list.c include <stdio.h> #include <stdlib.h> #include "list.h" //创建链表:创建一个空头链表 //失败返回NULL,成功返回list指针 list *list_create() { list * me ; me = 阅读全文
posted @ 2016-03-01 22:45 muzihuan 阅读(298) 评论(0) 推荐(0) 编辑