#include <stdio.h>#include <stdlib.h>#include <string.h>#define MAXSIZE 10typedef struct stude
#include#include#include#defineMAXSIZE10typedefstructstudent{intid;//学号floatscore;//成绩}Student;typedefstructnode{Studentdata;structnode*next;}Node,*LinkList;//初始化链表voidInitList(LinkList*L){*L=NULL;}//