摘要: 本文详细介绍了链表的一些简单的操作,包括链表的创建、遍历、查询、插入、删除、排序、逆序、释放。另附运行结果。 #include <stdio.h> #include <stdlib.h> typedef struct student { int num; int score; char name[2 阅读全文
posted @ 2016-09-05 23:40 书灯 阅读(9) 评论(0) 推荐(0)