【文件属性】:
文件名称:加强版的链表实现实例
文件大小:6KB
文件格式:TXT
更新时间:2017-06-09 10:52:02
链表实现例子
#include
#include
#include
struct student *head;
#define LEN sizeof(struct student) // student结构的大小
struct student *creat(); //创建链表
struct student *del( int num); //del函数用于删除结点, *head即链表
//的头指针, num是要删除的结点num。
struct student *insert( struct student *stu_2); // 第一个参数需要被插入的链表
// 第二个参数待插入的结构的地