摘要: 1 #include 2 #include 3 #include 4 typedef struct student 5 { 6 int num; 7 float socre; 8 struct student *next; 9 }Student; 10 Student *creatlist(void) 11 { 12 Student *he... 阅读全文
posted @ 2018-12-30 16:48 学之初 阅读(1451) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 typedef struct student 5 { 6 int num; 7 float socre; 8 struct student *next; 9 }Student; 10 11 Student *creatlist(void) //创建空链表,头节点 12 { 13... 阅读全文
posted @ 2018-12-30 16:45 学之初 阅读(702) 评论(0) 推荐(0) 编辑