链表的基本操作
代码说明:
#include #include #define LEN sizeof(struct student) /*----------------数据定义----------------------*/ //定义一个学生信息的结构体,包括学号,姓名和结构体类型的指针 struct student { long num; //学号 char name[128]; //姓名 struct student *next; //结构体指针 }; typedef struct student * stuNode; int n=0; //全局变量,记录链表的长度 /*---------------函数声明---------------------*/ stuNode Create(); //创建一个新的链表 &nbs
下载说明:请别用迅雷下载,失败请重下,重下不扣分!