#include#include#include#include#include#include#defineYES1#defineNO0typedefstruct{intnum;floatmath_score;floatengl_score;floatchin_score;floatphy_score;floatchem_score;doubleaver_score;doublesum_score;charsex;}StudentDate;//学生基本信息typedefstructstudent{charname[20];//学生姓名StudentDateone;//学生其他信息intrank;//成绩排名structstudent*next;}Student,*List;Student*startCheck(void);//开始检查Student*createListHead(void);//创建链表的头voidmenu(void);//主菜单voidsortList(Student*pHead);//排序链表voidreadListWithFile(Student*pHead,char*file_name);//从文件中读取数据,并保存在链表中voidsorttList(Student*pHead);//排序链表intuserChioce(Student*pHead);//用户选择intsortMenu(void);//打印选择菜单voidpasswordCheck(void);//密码检测voidcorrectWord(void);//修改密码voidaddStudentInfo(Student*pHead);//向链表的末尾添加数据intscanMenu(void);//浏览菜单voidfindStudentInfo(Student*pHead);//查找学生信息