欢迎来到天天文库
浏览记录
ID:3958799
大小:87.05 KB
页数:18页
时间:2017-11-26
《数据结构c语言员工信息管理系统》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、过去的习惯,决定今天的你,所以,过去的懒惰,决定你今天的一败涂地。数据结构实习报告---信息管理学校石家庄铁道大学指导老师张翠肖班级信0901-1班学号20082406姓名张洁院系信息分院2011.07.05学生信息管理系统 一、需求分析 本程序主要是执行链表的删除插入等功能 根据程序提示我们可以添加、修改、删除员工信息并能进行多种方式的查询还有员工信息一览 二、概要设计 1)为了实现上述功能需要定义一下抽象的数据类型: ADTList{ 数据对象:D={ai
2、ai∈ElemSeti=12···········
3、···nn>=0} 数据关系:R1={
4、ai-1ai∈Di=12```````n} 基本操作: InitList(&L); 操作结果:构造一个空的线性表L DestroyList(&L); 初始条件:线性表L存在 操作结果:销毁线性表L LocateElem(LI&e); 初始条件:线性表L存在1
5、 2)本程序是由几个函数构成的: ① 主函数:main() ② 菜单函数menu(); ③ 文件读入函数:readdata(); ④ 文件写入函数:writedata(); ⑤ 信息查询函数:chaxun(); ⑥ 信息更新函数:gengxin(); ⑦ 信息一览函数:liebiao(); ⑧ 数据删除函数:shanchu(); ⑨ 数据添加函数:tianjia(); ⑩ 数据修改函数:xiugai(); 它们的调用关系如 三、详细设计 #include #include6、alloc.h> #include #include//清屏函数头文件 #include #include #include #defineLENsizeof(structemp) #defineDATA"employee.txt" structemp { longintnum;//编号 charname[20];//姓名 intage;//年龄 charsex[4];//性别 charbirthday[107、];//生日 chartel[15];//电话 charedu[8];//学历 charpos[20];//职务 charadd[30];//住址 structemp*next; }; structemp*head=NULL; intt=0; voidmenu(); voidgengxin(); voidtianjia(); voidinsert(structemp*em); voiddisplay(structemp*p); voidliebiao(); voidchaxun(); void8、bianhao(); voidshengri(); voidxingming(); voidreadDate(); voidwriteDate(); voidfreeAll(); voidshanchu(); voidchange(); voiddevise(structemp*p); voidmain() { structemp*head=NULL; head=(structemp*)malloc(LEN); head->next=NULL;system("color1f"); system("9、modecon:cols=150lines=500"); readDate();menu();system("cls"); printf(""); printf("谢谢使用再见"); } voidmenu(void) { charilj[100];intflog;time_tT; structtm*timenow; time(&T);timenow=localtime(&T); flog=0; while(1) { sy10、stem("cls");printf(""); printf("┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━员工信息管理系统━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓"); printf("┃┃"); printf("┃
6、alloc.h> #include #include//清屏函数头文件 #include #include #include #defineLENsizeof(structemp) #defineDATA"employee.txt" structemp { longintnum;//编号 charname[20];//姓名 intage;//年龄 charsex[4];//性别 charbirthday[10
7、];//生日 chartel[15];//电话 charedu[8];//学历 charpos[20];//职务 charadd[30];//住址 structemp*next; }; structemp*head=NULL; intt=0; voidmenu(); voidgengxin(); voidtianjia(); voidinsert(structemp*em); voiddisplay(structemp*p); voidliebiao(); voidchaxun(); void
8、bianhao(); voidshengri(); voidxingming(); voidreadDate(); voidwriteDate(); voidfreeAll(); voidshanchu(); voidchange(); voiddevise(structemp*p); voidmain() { structemp*head=NULL; head=(structemp*)malloc(LEN); head->next=NULL;system("color1f"); system("
9、modecon:cols=150lines=500"); readDate();menu();system("cls"); printf(""); printf("谢谢使用再见"); } voidmenu(void) { charilj[100];intflog;time_tT; structtm*timenow; time(&T);timenow=localtime(&T); flog=0; while(1) { sy
10、stem("cls");printf(""); printf("┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━员工信息管理系统━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓"); printf("┃┃"); printf("┃
此文档下载收益归作者所有