2016年5月25日

C语言 链表的创建--打印--逆置--新增--删除--排序--释放

摘要: #define _CRT_SECURE_NO_WARNINGS #include #include #include //定义结构体 typedef struct _student{ int num; struct _student *pNext; }Student; //创建链表(顺序创建链表) Student * SList_Create(int *len/*out*... 阅读全文

posted @ 2016-05-25 12:13 寒魔影 阅读(323) 评论(0) 推荐(0)

导航