C语言模拟实现职工信息管理系统

2024-05-15 21:48

本文主要是介绍C语言模拟实现职工信息管理系统,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

代码实现如下:

#include <stdio.h>//输入、输出指令
#include <malloc.h>//在内存中动态的分配size字节的存储区
#include <string.h>//字符串相关操作指令
#include <stdlib.h>//五种类型、一些宏和通用工具函数
#include<conio.h>//通过键盘产生的对应操作
#include <MEMORY.H>//存储访问头文件typedef struct node
{    char   name[20];int    age;int    worktime;char   sex[20];char   marrige[20];int    grade;char   tired[20];struct  node *next;
}STU;void output(STU *head);
STU *Create();
STU *findByName(STU *head,char *name);
STU *findByWorktime(STU *head,int worktime);
STU *findByGrade(STU *head,int grade);
void find(STU *head);
STU *insert(STU *head);
STU *findByNumEx(STU *head,char num[],STU **ppbefore);
STU *del(STU *head);
void update(STU *head);
void sort(STU *head);
void save_info(STU *head);
void copy();
STU *load_info();
char *password();void main()
{      char *p;int i,n=0; char a[40];printf("        \t\t*******欢迎使用职工信息管理系统********\n\n");  printf("        \t\t请输入口令:\n");printf("        \t\t----------:\n");for(i=0;i<3;i++){   n=n+1;printf("        \t\t第%d次输入:",i+1);p=password();if(p!=NULL){STU *head;int choice;int n;head=NULL;printf("\n        \t\t你是合法用户!\n\n");for (i = 0; i < 0x7FFFFFF; i++);for (i = 0; i < 0x7FFFFFF; i++);for (i = 0; i < 0x7FFFFFF; i++);system("cls");for(;;){system("cls");printf("           \t\t*******职工信息管理系统********\n");printf("           \t\t* 1.输入职工信息              *\n");printf("           \t\t* 2.显示全部职工信息          *\n");printf("           \t\t* 3.查询职工信息              *\n");printf("           \t\t* 4.新增职工信息              *\n");printf("           \t\t* 5.删除职工信息              *\n");printf("           \t\t* 6.修改职工信息              *\n");printf("           \t\t* 7.对职工信息排序            *\n");printf("           \t\t* 8.保存当前信息到文件        *\n");printf("           \t\t* 9.备份信息资料到文件        *\n");printf("           \t\t* 10.从文件加载职工信息       *\n");printf("           \t\t* 0.退出系统                  *\n");printf("           \t\t*******************************\n");printf("           \t\t请选择(0-9):");scanf("%d",&choice);if(choice==0) break;switch(choice){   case 1: head=Create(); break;case 2: output(head);break;case 3:find(head);break;case 4: head=insert(head); break;case 5: head=del(head); break;case 6: update(head);break;case 7: sort(head);break;case 8: save_info(head);break;case 9: copy();break;case 10:head=load_info();break;}printf("按任意键继续....");getch();}printf("           \t\t感谢您的使用,再见!\n");break;}else{ printf("\n        \t\t你是非法用户!\n\n");if(n==3)printf("           \t\t你的错误口令次数超过3次,程序关闭!\n");}}
}STU *Create()
{STU *head,*pnew,*pend;head=NULL;printf("输入职工信息:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");for(;;) {pnew=(STU *)malloc(sizeof(STU));scanf("%s",pnew->name);if(strcmp(pnew->name,"0")==0){printf("员工信息录入完毕\n");break;}scanf("%d%d%s%s%d%s",&pnew->age,&pnew->worktime,pnew->sex,pnew->marrige,&pnew->grade,pnew->tired);pnew->next=NULL; if(head==NULL){head=pnew;pend=pnew;}else{pend->next=pnew;pend=pend->next;}}return head;
}void output(STU *head)
{STU *p;printf("职工信息如下:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");for(p=head;p!=NULL;p=p->next)printf("%s\t%d\t%d\t%s\t%s\t%d\t%s\n",p->name,p->age,p->worktime,p->sex,p->marrige,p->grade,p->tired);
}void find(STU *head)
{STU *p;char name[20];int worktime,grade,i;int choice;system("cls");for(;;){system("cls");printf("           \t\t*******职工信息查询系统********\n");printf("           \t\t* 1.按职工姓名查找            *\n");printf("           \t\t* 2.按职工工龄查找            *\n");printf("           \t\t* 3.按职工级别查找            *\n");printf("           \t\t* 0.退出系统                  *\n");printf("           \t\t*******************************\n");printf("           \t\t请选择(0-3):");scanf("%d",&choice);if(choice==0) break;switch(choice){   case 1:printf("请输入职工姓名:");scanf("%s",name);p=findByName(head,name);break;case 2: printf("请输入职工工龄:");scanf("%d",&worktime);p=findByWorktime(head,worktime);break;case 3:printf("请输入职工级别:");scanf("%d",&grade);p=findByGrade(head,grade);break;}if(p==NULL){    printf("无与此职工相关的信息!\a\n");}else{if(choice==1){    printf("职工信息如下:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n"); for(p=head;p!=NULL;p=p->next){if(strcmp(p->name,name)==0)printf("%s\t%d\t%d\t%s\t%s\t%d\t%s\n",p->name,p->age,p->worktime,p->sex,p->marrige,p->grade,p->tired);}}else if(choice==2){     printf("职工信息如下:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");for(p=head;p!=NULL;p=p->next){if(p->worktime==worktime)printf("%s\t%d\t%d\t%s\t%s\t%d\t%s\n",p->name,p->age,p->worktime,p->sex,p->marrige,p->grade,p->tired);}}else if(choice==3){        printf("职工信息如下:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");for(p=head;p!=NULL;p=p->next){if(p->grade==grade)printf("%s\t%d\t%d\t%s\t%s\t%d\t%s\n",p->name,p->age,p->worktime,p->sex,p->marrige,p->grade,p->tired);}}}printf("按任意键继续....");getch();
}
printf("           \t\t您已退出查询系统\n\n");
}STU *findByName(STU *head,char *name)
{STU *p,*result=NULL;for(p=head;p!=NULL;p=p->next)if(strcmp(p->name,name)==0){result=p;break;}
return result;
}STU *findByWorktime(STU *head,int worktime)
{STU *p,*result=NULL;for(p=head;p!=NULL;p=p->next)if(p->worktime==worktime){result=p;break;}
return result;
}STU *findByGrade(STU *head,int grade)
{STU *p,*result=NULL;for(p=head;p!=NULL;p=p->next)if(p->grade==grade){result=p;break;}return result;
}STU *insert(STU *head)
{STU *pnew,*pcur,*pbefore,*p;int choice;printf("输入职工信息:\n");for(;;){//1.申请一个新节点并赋值pnew=(STU *)malloc(sizeof(STU));printf("职工信息如下:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");scanf("%s%d%d%s%s%d%s",pnew->name,&pnew->age,&pnew->worktime,pnew->sex,pnew->marrige,&pnew->grade,pnew->tired);pnew->next=NULL;//2.将新节点插入到链表//若链表为空,则直接插入;若链表不为空,则查找位置,然后插入if(head==NULL){head=pnew;  }else{pcur=NULL;for(p=head;p!=NULL;pbefore=p,p=p->next)if(strcmp(p->name,pnew->name)==1){pcur=p;break;}//查找之后,判断pcur是否为空,//若pcur为空,则pnew所指节点应插入到链表尾部 if(pcur==NULL){pbefore->next=pnew; }//若pcur非空,则pnew所指节点应插入到pcur之前,pbefore之后,此时,又分两种情况://pcur指向的是首节点,或者pcur指向后续节点;else{if(pcur==head){pnew->next=pcur;head=pnew;}else{pnew->next=pcur;pbefore->next=pnew;}}}printf("请选择:按1继续添加->按0结束添加\n");printf("choice=");scanf("%d",&choice);if(choice==0){   printf("信息添加完毕!\n");break;}}return head;
}STU *del(STU *head)
{STU *presult,*pbefore;char name[20];printf("要删除的职工信息:");scanf("%s",&name);presult=findByNumEx(head,name,&pbefore);if(presult!=NULL){printf("找到了!职工信息如下:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");  printf("%s\t%d\t%d\t%s\t%s\t%d\t%s\n",presult->name,presult->age,presult->worktime,presult->sex,presult->marrige,presult->grade,presult->tired);    if(presult==head){head=presult->next;}else{pbefore->next=presult->next;}printf("删除成功---> ");}elseprintf("无与此职工相关的信息\a\a\n");return head;
}//函数说明:
//  在head所指向链表中,查找学号为num的节点
//  找到后,返回两个值:指向当前节点的指针presult,指向当前节点的前一节点的指针pbefore,
//  presult通过函数返回值返回(即return),pbefore通过输出型参数ppBefore返回
STU *findByNumEx(STU *head,char name[],STU **ppbefore)
{STU *p,*presult=NULL,*pbefore=NULL;for(p=head;p!=NULL;pbefore=p,p=p->next)if(strcmp(p->name,name)==0){presult=p;break;}if(p==NULL)pbefore=NULL;*ppbefore=pbefore;return presult;
}void update(STU *head)
{STU *presult;char name[20];printf("输入要修改员工姓名:\n");scanf("%s",name);presult=findByName(head,name);if(presult==NULL)printf("查无此人!无法修改!\a\n");else{printf("找到了!职工信息如下:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");  printf("%s\t%d\t%d\t%s\t%s\t%d\t%s\n",presult->name,presult->age,presult->worktime,presult->sex,presult->marrige,presult->grade,presult->tired);    printf("请输入修改信息:\n");printf("姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");   scanf("%s%d%d%s%s%d%s",presult->name,&presult->age,&presult->worktime,presult->sex,presult->marrige,&presult->grade,presult->tired);printf("修改完毕---> ");}
}void sort(STU *head)//按级别排序
{STU *pi,*pj,*pindex,*p;STU temp;int len=sizeof(STU)-sizeof(STU *);int i,j,n=0;for(p=head;p!=NULL;p=p->next)n++;for(pi=head,i=0;i<n-1;i++,pi=pi->next){pindex=pi;for(pj=pi->next,j=i+1;j<n;j++,pj=pj->next)if(pindex->grade> pj->grade)pindex=pj;memcpy(&temp,pi,len); memcpy(pi,pindex,len); memcpy(pindex,&temp,len); }printf("排序完毕---> ");
}void save_info(STU *head)
{char filename[20];FILE *fp;STU *p;printf("保存当前信息到文件的处理\n");printf("请输入文件名:");scanf("%s",filename);if((fp=fopen(filename,"w"))==NULL){printf("无法打开文件\n");return;}fprintf(fp,"全部职工信息如下:\n姓名\t年龄\t工龄\t性别\t婚姻\t级别\t是否在职\n");for(p=head;p!=NULL;p=p->next)fprintf(fp,"%s\t%d\t%d\t%s\t%s\t%d\t%s\n",p->name,p->age,p->worktime,p->sex,p->marrige,p->grade,p->tired);fprintf(fp,"%d",0);fclose(fp);printf("保存完成!--->");
}void copy()
{FILE *in,*out;char infile[40],ch;char outfile[40];printf("现在进入学生信息文件的备份\n");printf("源文件名:");scanf("%s",infile);printf("备份文件名:");scanf("%s",outfile);if((in=fopen(infile,"r"))==NULL){printf("文件无法打开\n");exit(0);}if((out=fopen(outfile,"w"))==NULL){printf("文件无法打开\n");exit(0);}ch=fgetc(in);while(ch!=EOF){fputc(ch,out);ch=fgetc(in);}   fclose(in);fclose(out);printf("备份成功!\n");
}STU *load_info()
{STU *head=NULL,*pnew,*pend;char filename[20];char a[20];FILE *fp;int i;printf("           \t\t文件加载职工信息,输入文件名:");scanf("%s",filename);if((fp=fopen(filename,"r"))==NULL){printf("           \t\t加载失败!\n");exit(0);}for(i=0;i<8;i++)fscanf(fp,"%s",a);for(;;){pnew=(STU *)malloc(sizeof(STU));fscanf(fp,"%s",&pnew->name);if(strcmp(pnew->name,"0")==0)break;fscanf(fp,"%d%d%s%s%d%s",&pnew->age,&pnew->worktime,&pnew->sex,&pnew->marrige,&pnew->grade,&pnew->tired);pnew->next=NULL;if(head==NULL){head=pnew;pend=pnew;}else{pend->next=pnew;pend=pnew;}}fclose(fp);printf("           \t\t加载成功!\n");return head;
}char *password()
{char password[100],c;char *result=NULL;int e,count;e=0;count=0;while((c=getch())!=13&&e<100)//13为回车{ if(c==8&&e>0)//8为退格{password[e--]='\0';//删除最后一个,并且计数器减1printf("\b \b");//退格}else{password[e++]=c;printf("*");//覆盖*号,当输出空格覆盖前一个字符后,再一次前移,以便下一次输入}}password[e]='\0';if(strcmp(password,"123456")==0)result=1;     return  result;
}

程序运行效果
这里写图片描述

这里写图片描述

这篇关于C语言模拟实现职工信息管理系统的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/993012

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P