ImageVerifierCode 换一换
格式:DOC , 页数:12 ,大小:40.54KB ,
资源ID:3941274      下载积分:5 金币
验证码下载
登录下载
邮箱/手机:
验证码: 获取验证码
温馨提示:
支付成功后,系统会自动生成账号(用户名为邮箱或者手机号,密码是验证码),方便下次登录下载和查询订单;
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

开通VIP
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.zixin.com.cn/docdown/3941274.html】到电脑端继续下载(重复下载【60天内】不扣币)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  
声明  |  会员权益     获赠5币     写作写作

1、填表:    下载求助     索取发票    退款申请
2、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
3、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
4、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
5、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【丰****】。
6、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
7、本文档遇到问题,请及时私信或留言给本站上传会员【丰****】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。

注意事项

本文(学生信息管理系统(C语言基于链表文件).doc)为本站上传会员【丰****】主动上传,咨信网仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知咨信网(发送邮件至1219186828@qq.com、拔打电话4008-655-100或【 微信客服】、【 QQ客服】),核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载【60天内】不扣币。 服务填表

学生信息管理系统(C语言基于链表文件).doc

1、#includestdio.h#includedefine LEN sizeof(struct student)#define DAT_FILENAME ”Information。txt”/*定义数据结构*/struct dateint year;int month;int day;;struct studentint ID;char Name8;int age;char xb;char telephone15;char address40;struct date birthday;char email40;struct student next;/*函数原型*/void DispMainMe

2、nu();void DisplayInformation(struct student head);struct student FindstudentID(struct student head,int findID);struct student FindstudentName(struct student *head,char findname);struct student InformationInput(struct student head);void QueryInformation(struct student *head);struct student EditInform

3、ation(struct student head);struct student Insert(struct student *head,struct student p);void Save(struct student head);struct student Read(struct student head);struct student *Delete(struct student *head,int findID);struct student *Add(struct student head);void Help();/*显示主菜单*/void DispMainMenu()pri

4、ntf(*学生信息管理系统*n”);printf(”n”);printf(”tttt1-信息录入n);printf(n);printf(tttt2-信息修改n);printf(”n”);printf(tttt3-信息查询n”);printf(”n”);printf(”tttt4-保存数据到文件n);printf(”n”);printf(”tttt5-打开数据文件n”);printf(n”);printf(tttt6-文件追加n”);printf(n);printf(”tttt7-帮助n”);printf(”n”);printf(”tttt0-退出n”);printf(”n);printf(”友

5、情提示:初次使用请先阅读帮助n);printf(*n”);printf(请选择(07):”);/*显示主菜单*/*帮助*/void Help()printf(nttt欢迎进入帮助系统!nn”); printf(t1。请按照主菜单提示选择所需执行功能的数字代号!n”);printf(t2.所有文件请按照规范输入n);printf(t3.刚开始执行程序时若需要文本文件里的数据,请先进行读取文件信息!n);printf(”t4。修改信息以后,请切记需要保存!n”);printf(”n);/*显示所有学生信息*/void DisplayInformation(struct student head)s

6、truct student p;printf(”*”);printf(”n学号t姓名t年龄t性别t 电话tt地址t 出生年月t emailn);p=(struct student )malloc(LEN);p=head;if(head!=NULL)while(p!=NULL)printf(dtst-dt”,pID,pName,p-age);printf(”%ctstst,pxb,ptelephone,p-address);printf(”%d d d”,pbirthday。year,p-birthday。month,p-birthday.day);printf(”t%-sn,pemail);p

7、=pnext;elseprintf(”无数据n);/*查找指定学号的学生信息*/struct student FindstudentID(struct student *head,int findID)struct student p;p=(struct student *)malloc(LEN);p=head;if(head!=NULL)while(p!=NULL)if(p-ID=findID)break;p=p-next;elseprintf(无数据n”);return p;/*查找指定姓名的学生信息*/struct student FindstudentName(struct stude

8、nt head,char findname)struct student p;p=(struct student *)malloc(LEN);p=head;if(head!=NULL)while(p!=NULL)if(strcmp(pName,findname)=0)break;p=p-next;elseprintf(”无数据n);return p;/*学生信息录入*/struct student InformationInput(struct student head)int number,i;struct student *p;p=(struct student )malloc(LEN);

9、printf(”n请输入本次录入的学生人数:);scanf(%d”,number);for(i=0;inumber;i+)/*输入 number 个学生的信息*/printf(请输入第d个学生的学号(八个字符以内):”,i+1);scanf(d”,p-ID);printf(ttt 姓名:t”);scanf(%s”,pName);printf(”ttt 年龄:t);scanf(”d”,page);printf(”ttt 性别(男M、女W):”);scanf(%s,pxb);printf(”ttt 电话(八位):t);scanf(”%s”,ptelephone);printf(ttt 地址:t”)

10、;scanf(s”,p-address);printf(ttt 出生年月:t”);scanf(%ddd,pbirthday.year,pbirthday。month,p-birthday。day);printf(tttemail:t);scanf(%s,pemail);head=Insert(head,p);p=(struct student *)malloc(LEN);printf(n 您的输入信息是:n”);DisplayInformation(head);return(head);/*学生信息查询*/void QueryInformation(struct student head)ch

11、ar select;int findID;char findname8;struct student *p;printf(*请选择查询方式*n”);printf(t1-按学号查询;t2按姓名查询n”);printf(”*n”);printf(”请选择(1-2):);/显示菜单信息/select=getche();getch();switch (select)case1:printf(n 按学号查询n 请输入学生的学号:”);scanf(”d,findID);if(p=FindstudentID(head,findID)!=NULL) /*找到指定学号的学生/printf(”n 查找结果如下:n

12、”);printf(”n学号t姓名t年龄t性别t 电话tt地址t 出生年月t emailn);printf(”%dtstdt”,pID,p-Name,page);printf(”%ct%stst”,pxb,p-telephone,paddress);printf(d %d d,pbirthday。year,pbirthday。month,pbirthday。day);printf(”tsn”,pemail);else /*没有找到/printf(”您输入的学号不存在!n”);break;case2:printf(”n 按姓名查询n 请输入学生的姓名:”);scanf(%s,findname);

13、if((p=FindstudentName(head,findname))!=NULL) /找到指定姓名的学生/printf(n 查找结果如下:n);printf(”n 学号t 姓名t 年龄t 性别t 电话t 地址t 出生年月t emailn”);printf(dt%stdt,pID,p-Name,p-age);printf(”%ctstst”,pxb,ptelephone,paddress);printf(”%d d %d”,p-birthday。year,pbirthday。month,pbirthday.day);printf(”t%sn”,p-email);else /没有找到/pri

14、ntf(”您输入的姓名不存在!n”);break;default:printf(”选择错误!n);/*修改学生信息*/struct student *EditInformation(struct student *head)int findID;char select;struct student p;printf(n 请输入学生的学号:);scanf(”d”,findID);if(p=FindstudentID(head,findID))!=NULL) /*找到指定学号的学生*/printf(”*请修改方式*n”);printf(”t1修改信息;t2删除信息n);printf(”*n);pr

15、intf(请选择(12):);select=getche();getch();switch (select)case1: /修改信息/printf(”您选择的是修改信息!n”);printf(”姓 名:sn”,pName);printf(”原信息:学号:dt 年龄:dt 性别:%cn”,p-ID,page,p-xb);printf(t 电话:st 地址:%stemail:%sn,p-telephone,paddress,pemail);printf(”请输入新信息n);printf(”学号t”);scanf(%d”,&pID);printf(姓名:t”);scanf(”s”,pName);pr

16、intf(”年龄:t”);scanf(”d,&p-age);printf(性别(男M、女W):”);scanf(”%s”,pxb);printf(”电话:t”);scanf(”s”,p-telephone);printf(”地址:t”);scanf(”s”,paddress);printf(”出生年月:t”);scanf(”%ddd”,p-birthday。year,p-birthday。month,&pbirthday。day);printf(”email:t”);scanf(s,pemail);break;case2: /删除信息*/printf(”您选择的是删除信息!n);head=De

17、lete(head,findID);break;else /*没有找到学号匹配的记录*/printf(”您输入的学号不存在!n);return (head);/*有序插入*/struct student *Insert(struct student head,struct student *p)struct student p0,p1;if(head=NULL)head=p;p-next=NULL;return(head);if(p-IDheadID)p-next=head;head=p;return(head);p1=head;while(pIDp1ID)&(p1next!=NULL))p0

18、=p1;p1=p1next;if(p-IDp1ID)pnext=p1;p0-next=p;elseif(p-ID=p1ID);elsep1next=p;pnext=NULL;return(head);/*保存数据到文件*/void Save(struct student head)FILE *fp;struct student p;p=head;if(fp=fopen(DAT_FILENAME,”w+”))!=NULL) /*以W+的方式打开文件*/while(p!=NULL)fprintf(fp,”%dt”,p-ID);fprintf(fp,”st,pName);fprintf(fp,”dt

19、,page);fprintf(fp,ct,p-xb);fprintf(fp,%st,ptelephone);fprintf(fp,”st”,paddress);fprintf(fp,%d d dt,pbirthday.year,pbirthday.month,pbirthday.day);fprintf(fp,”sn”,pemail);p=pnext; /*将链表的内容写入文件/fclose(fp);elseprintf(”cannot open filen”);/*打开数据文件*/struct student Read(struct student head)struct student *

20、p;p=(struct student *)malloc(LEN);FILE fp;if(fp=fopen(DAT_FILENAME,”r))!=NULL)/*读取文件中的内容到链表中*/while(fscanf(fp,”%dt,p-ID)!=EOF)fscanf(fp,st,p-Name);fscanf(fp,%dt”,&page);fscanf(fp,ct”,p-xb);fscanf(fp,”st,ptelephone);fscanf(fp,”st”,p-address);fscanf(fp,”%d d dt,&p-birthday。year,pbirthday。month,pbirthd

21、ay.day);fscanf(fp,sn”,pemail);head=Insert(head,p);p=(struct student *)malloc(LEN);fclose(fp);elseprintf(”cannot open filen);return head;/*文件内容追加*/struct student *Add(struct student head)head=Read(head);head=InformationInput(head);return (head);/*删除信息*/struct student Delete(struct student *head,int f

22、indID)struct student pre,*p;if(headID=findID)p=head;head=headnext;elsepre=head; p=prenext;while(p!=NULLp-ID!=findID)pre=p;p=pnext;if(pID=findID)prenext=pnext;free(p);return (head);/*主函数*/void main()char select,c;struct student head;head=NULL;select=0;while(select!=0)DispMainMenu();select=getche();ge

23、tch();switch(select)case0:printf(”n您选择的是退出!n);_beep(300,400);continue;case1:system(”cls”);printf(n您选择的是信息录入!n”);head=InformationInput(head);break;case2:system(cls”);printf(n您选择的是信息修改!n”);head=EditInformation(head);break;case3:system(cls);printf(n您选择的是信息查询!n”);QueryInformation(head);break;case4:syste

24、m(cls”);printf(”n您选择的是保存数据到文件!n);Save(head);break;case5:system(cls”);printf(”n您选择的是打开数据文件!n”);if(head=Read(head)!=NULL)DisplayInformation(head);break;case6:system(”cls);printf(”n您选择的是文件追加!n”);head=Add(head);break;case7:system(cls”);printf(”n您选择的是帮助!n”);Help();break;default:printf(”n选择错误!请重新选择!n”);printf(”请选择返回主界面或退出!n); /选择是否继续printf(主界面:1t退出:2t”); scanf(”d,&c);while(!(c=1c=2)printf(”选择错误,请重新选择!”); printf(n主界面:1t退出:2t”); scanf(”d,&c); if(c=1) system(cls”); else system(cls); _beep(300,400); printf(”nt您已安全退出!n”); break;

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服