链表操作(北信科).doc

链表操作(北信科).doc

ID:61436067

大小:27.00 KB

页数:8页

时间:2021-01-30

链表操作(北信科).doc_第1页
链表操作(北信科).doc_第2页
链表操作(北信科).doc_第3页
链表操作(北信科).doc_第4页
链表操作(北信科).doc_第5页
资源描述:

《链表操作(北信科).doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、#include#include#include#include#include#defineLENsizeof(structstudent)typedefstructstudent{longnumb;charname[10];intscore[3];floatave;structstudent*next;}STU;STU*creatbyone();voidprint(STU*head);STU*findBynumb(

2、STU*head,longnum);STU*del(STU*head);STU*insert(STU*head);voidfind(STU*head);voidsort(STU*head,intn);voidupdate(STU*head);voidsave(STU*head);STU*load(STU*head);intn;voidmain(){STU*head;intchoise;for(;;){system("cls");printf("菜单栏");printf("欢迎使用成绩管理系统");print

3、f("");printf("[1]输入成绩

4、

5、[5]查找成绩信息");printf("");printf("[2]显示全部成绩

6、

7、[6]更改成绩信息");printf("");printf("[3]新增成绩

8、

9、[7]保存信息");printf("");printf("[4]删除成绩

10、

11、[8]加载成绩信息");printf("");printf("[0]退出");printf("");printf("");printf("请选择功能(0~8):");scanf("%d"

12、,&choise);if(choise==0)break;switch(choise){case1:head=creatbyone();break;case2:print(head);break;case3:head=insert(head);break;case4:head=del(head);break;case5:find(head);break;case6:update(head);break;case7:save(head);break;case8:head=load(load);break;}}prin

13、tf("谢谢使用!!");}voidfind(head){STU*p;intnum;printf("请输入要查找的学号:");scanf("%d",&num);p=findBynumb(head,num);if(p==NULL)printf("没有找到");else{printf("找到了");printf("学号t姓名t成绩1t成绩2t成绩3t平均分");printf("%ldt%st%dt%dt%dt%.2f",p->numb,p->name,p->score[0],p->s

14、core[1],p->score[2],p->ave);}printf("按任意键继续......");getch();}STU*creatbyone()//创建信息{STU*head,*pnew,*ptail;printf("进入学生信息创建(以学号为0加回车退出创建)");head=NULL;n=0;while(1){pnew=(STU*)malloc(LEN);printf("学号t姓名t成绩1t成绩2t成绩3");scanf("%ld",&pnew->numb);if(pnew->numb=

15、=0)break;scanf("%s%d%d%d",pnew->name,&pnew->score[0],&pnew->score[1],&pnew->score[2]);pnew->ave=(pnew->score[0]+pnew->score[1]+pnew->score[2])/3.0;n++;if(n==1){head=pnew;ptail=pnew;}else{ptail->next=pnew;ptail=pnew;}}ptail->next=NULL;returnhead;printf("按任意键继续.

16、.....");getch();}STU*findBynumb(STU*head,longnum)//查找{STU*presult=NULL,*p;for(p=head;p!=NULL;p=p->next)if(p->numb==num){presult=p;break;}returnpresult;}voidprint(STU*head)//输出{STU*

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。