学生成绩管理系统
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
七.附页:
#include
#include
#include
#include
#define NULL 0
#define LEN sizeof(struct address_list)
int n;
struct address_list
{
char ID[20];
char name[20];
char age[10];
char sex[10];
char birthday[10];
char grade[10];
struct address_list *next;
};
struct address_list *shifang(struct address_list *head); // 释放内存函数声明
//创建函数,不带头结点的链表
struct address_list *creat(void)
{
struct address_list *head,*p1,*p2;
char ID[20];
n=0;
p1=(struct address_list *)malloc(LEN);
p2=p1; //强制内存转换
printf("\n\n**请输入学生信息!\n\n**学号输入为0时表示创建完毕!\n");
printf("\n请输入学号:");
gets(ID);
if(strcmp(ID,"0")!=0)
{
strcpy(p1->ID,ID);
printf("学生的姓名:"); gets(p1->name);
printf("学生的年龄:"); gets(p1->age);
printf("学生的性别:"); gets(p1->sex);
printf("学生的生日:"); gets(p1->birthday);
printf("学生的综合成绩:"); gets(p1->grade);
printf("\n\n");
head=NULL;
while(1)
{
n=n+1; //记录档案袋人数个数
if(n==1)
head=p1;
else
p2->next=p1;
p2=p1;
printf("请输入学号:"); scanf("%s",ID);
if(strcmp(ID,"0")==0)
{
break;
}
else
{
p1=(struct address_list *)malloc(LEN);
strcpy(p1->ID,ID);
printf("学生的姓名:"); scanf("%s",&p1->name);
printf("学生的年龄:"); scanf("%s",&p1->age);
printf("学生的性别:"); scanf("%s",&p1->sex);
printf("学生的生日:"); scanf("%s",&p1->birthday);
printf("学生的综合成绩:"); scanf("%s",&p1->grade);
printf("\n\n");
}
}
p2->next=NULL;
return head;
}
else
return 0;
}
//输出函数
void print(struct address_list *head)
{
struct address_list *p;
if(head!=NULL)
{
p=head;
printf("共有学生%d人:\n",n);
printf("==========================================================================\n");
do
{
printf("1.学号%s\n",p->ID);
printf("2.姓名%s\n",p->name);
printf("3.年龄%s\n",p->age);
printf("4.性别%s\n",p->sex);
printf("5.出生年月%s\n",p->birthday);
printf("6.综合成绩%s\n",p->grade);
printf("\n\n");
p=p->next;
}while(p!=NULL);
printf("==========================================================================\n");
}
else
{
printf("档案为空!\n");
printf("\n\n");
}
}
//增加函数
s
truct address_list *insert(struct address_list *head)
{
struct address_list *p0,*p1,*p2;
char ID[20];
p1=head;
printf("请输入学号:"); gets(ID);
if(strcmp(ID,"0")==0)
{
printf("学号不能为0,增加失败!\n");
return(head);
}
else
{
p0=(struct address_list *)malloc(LEN);
printf("请输入学生的姓名:"); gets(p1->name);
printf("请输入学生的年龄:"); gets(p1->age);
printf("请输入学生的性别:"); gets(p1->sex);
printf("请输入学生的生日:"); gets(p1->birthday);
printf("请输入学生的综合成绩:"); gets(p1->grade);
n=n+1;
if(head==NULL)
{
head=p0;
p0->next=NULL;
return head;
}
else
{
while(strcmp(p0->ID,p1->ID)>0&&(p1->next!=NULL))
{
p2=p1;
p1=p1->next;
}
if(strcmp(p0->ID,p1->ID)<0 || strcmp(p0->ID,p1->ID)==0)
{
if(head==p1)
{
head=p0;
}
else
{
p2->next=p0;
}
p0->next=p1;
}
else
{
p1->next=p0;
p0->next=NULL;
}
return head;
}
}
}
struct address_list* delete_txl(struct address_list *head)
{
struct address_list *p,*q;
char ID[20];
if(head==NULL)
{
printf("档案库为空!\n");
return head;
}
p=head;
printf("请输入需要删除的学生的学号:");
gets(ID);
if(strcmp(head->ID,ID)==0)
{
head=head->next;
free(p);
printf("删除操作成功!\n");
return head;
}
else
{
q=head,p=head->next;
while(p!=NULL)
{
if(strcmp(p->ID,ID)==0)
{
q->next=p->next;
free(p);
printf("删除操作成功!\n");
return head;
}
p=p->next;
q=q->next;
}
}
}
//显示函数
struct address_list *display(struct address_list *head)
{
struct address_list *p1,*p2;
char ID[20];
int m;
if(head==NULL)
{
printf("档案库为空!\n");
return head;
}
p1=head;
m=0;
printf("请输入该学生的学号:");
gets(ID);
while(p1!=NULL)
{
while((strcmp(p1->ID,ID))!=0 && p1->next!=NULL)
{
p2=p1;
p1=p1->next;
}
if(strcmp(p1->ID,ID)==0)
{
m++;
printf("1.学号%s\n",p1->ID);
printf("2.姓名%s\n",p1->name);
printf("3.年龄%s\n",p1->age);
printf("4.性别%s\n",p1->sex);
printf("5
.出生年月%s\n",p1->birthday);
printf("6.综合成绩%s\n",p1->grade);
}
p1=p1->next;
}
if(m==0)
{
printf("此学生不在档案库中!\n");
}
return(head);
}
//排序函数
struct address_list *paixu(struct address_list *head)
{
struct address_list *p1,*p2;
int i,j;
struct address_list1
{
char ID[20];
char name[20];
char age[10];
char sex[10];
char birthday[10];
char grade[10];
};
struct address_list1 px[200];
struct address_list1 temp;
if(head==NULL)
{
printf("档案库为空,无法排序!\n");
return(head);
}
p1=head;
for(i=0;i
strcpy(px[i].ID,p1->ID);
strcpy(px[i].name,p1->name);
strcpy(px[i].age,p1->age);
strcpy(px[i].sex,p1->sex);
strcpy(px[i].birthday,p1->birthday);
strcpy(px[i].grade,p1->grade);
p2=p1;
p1=p1->next;
}
head=shifang(head);
for(j=0;j
for(i=j+1;i
if(strcmp(px[i].grade,px[j].grade)<0)
{
temp=px[i];
px[i]=px[j];
px[j]=temp;
}
}
}
p1=(struct address_list *)malloc(LEN);
p2=p1;
strcpy(p1->ID,px[0].ID);
strcpy(p1->name,px[0].name);
strcpy(p1->age,px[0].age);
strcpy(p1->sex,px[0].sex);
strcpy(p1->birthday,px[0].birthday);
strcpy(p1->grade,px[0].grade);
head=p1;
for(i=1;i
p1=(struct address_list *)malloc(LEN);
strcpy(p1->ID,px[i].ID);
strcpy(p1->name,px[i].name);
strcpy(p1->age,px[i].age);
strcpy(p1->sex,px[i].sex);
strcpy(p1->birthday,px[i].birthday);
strcpy(p1->grade,px[i].grade);
p2->next=p1;
p2=p1;
}
p2->next=NULL;
printf("按综合成绩排序后为:\n");
print(head);
return(head);
}
//学号查找函数
struct address_list *search(struct address_list *head)
{
struct address_list *p1,*p2;
int m;
char ID[20];
if(head==NULL)
{
printf("档案库为空,无法查找!\n");
return(head);
}
p1=head;
printf("********************************************************************************************\n");
printf("*************************** 请输入需要查找学生的学号 *****************************************\n");
printf("********************************************************************************************\n");
m=0;
gets(ID);
while(p1!=NULL)
{
while(strcmp(p1->ID,ID)!=0&&p1->next!=NULL)
{
p2=p1;
p1=p1->next;
}
if(strcmp(p1->ID,ID)==0)
{
m++;
printf("你查找的内容是:\n");
printf("=================================
===================================\n");
printf("1.学号%s\n",p1->ID);
printf("2.姓名%s\n",p1->name);
printf("3.年龄%s\n",p1->age);
printf("4.性别%s\n",p1->sex);
printf("5.出生年月%s\n",p1->birthday);
printf("6.综合成绩%s\n",p1->grade);
printf("====================================================================\n");
}
p1=p1->next;
if(m==0)
{
printf("此同学不在档案库中!\n");
}
break;
}
return(head);
}
//释放内存函数
struct address_list *shifang(struct address_list *head)
{
struct address_list *p1;
while(head!=NULL)
{
p1=head;
head=head->next;
free(p1);
}
return(head);
}
//文件写入函数
void save(struct address_list *head)
{
FILE *fp;
struct address_list *p1;
char nameTXT[30];
if(head==NULL)
{
printf("档案库为空,无法进行存储!\n");
return;
}
printf("请输入保存后的文件名:");
gets(nameTXT);
fp=fopen(nameTXT,"w");
if(fp==NULL)
{
printf("cannot open file\n");
return;
}
p1=head;
for(;p1!=NULL;)
{
printf("1.学号%s\n2.姓名%s\n3.年龄%s\n4.性别%s\n5.出生年月%s\n6.综合成绩%s\n",p1->ID,p1->name,p1->age,p1->sex,p1->birthday,p1->grade);
fprintf(fp,"%s\n%s\n%s\n%s\n%s\n%s\n",p1->ID,p1->name,p1->age,p1->sex,p1->birthday,p1->grade);
p1=p1->next;
}
printf("保存完毕!\n");
fclose(fp);
}
//文件读出函数
struct address_list *load(struct address_list *head)
{
FILE *fp;
char nameTXT[30];
struct address_list *p1,*p2;
printf("请输入要输出的文件名:");
gets(nameTXT);
fp=fopen(nameTXT,"r");
if(fp==NULL)
{
printf("此通讯录名不存在,无法输出!\n");
return(head);
}
else
{
head=shifang(head);
}
p1=(struct address_list *)malloc(LEN);
fscanf(fp,"%s%s%s%s%s%s",&p1->ID,&p1->name,&p1->age,&p1->sex,&p1->birthday,&p1->grade);
if(feof(fp)!=0)
{
printf("文件为空,无法打开!\n");
return(head);
}
else
{
rewind(fp);
p2=p1;
head=p1;
n=0;
while(feof(fp)==0)
{
fscanf(fp,"%s%s%s%s%s%s",&p1->ID,&p1->name,&p1->age,&p1->sex,&p1->birthday,&p1->grade);
if(feof(fp)!=0)
{
break;
}
p2->next=p1;
p2=p1;
p1=(struct address_list *)malloc(LEN);
n=n+1;
}
p2->next=NULL;
p1=head;
head=head->next;
n=n-1;
free(p1);
print(head);
printf("打开完毕!\n");
return(head);
}
fclose(fp);
}
//其他操作函数
struct address_list *menu(struct address_list *head)
{
char num[10]
;
while(1)
{
printf("\n\n\n===========================================================================\n\n");
printf(" 1 学号查找 \n");
printf(" 2 单个显示 \n");
printf(" 3 增加 \n");
printf(" 4 退出 \n\n");
printf("===============================================================================\n");
printf("请输入您选择的操作:");
gets(num);
switch(*num)
{
case '1':
{
head=search(head); //学号查找
print(head);
}
break;
case '2':
{
head=display(head); //显示
}
break;
case '3':
{
head=insert(head); //增加
print(head);
}
case '4':
return head;
default:
printf("操作错误,此项不存在!\n");
break;
}
if(strcmp(num,"6")==0)
break;
}
return head;
}
//综合函数
int main()
{
struct address_list *head=NULL;
char num[10];
char useless[10];
printf("**********************欢迎进入学生成绩管理系统************************\n");
while(1)
{
printf("\n\n******************************************************************\n\n");
printf("*** 1 创建档案库 ***\n");
printf("****** 2 按成绩排序 ******\n");
printf("********* 3 其他操作 **********\n");
printf("************ 4 保存 *************\n");
printf("*************** 5 打开 ***************\n");
printf("****************** 6 删除 *******************\n");
printf("********************* 7 退出 **********************\n\n\n\n");
printf("******************************************************************\n");
printf("请输入您选择的操作:");
gets(num);
switch(*num)
{
case '1':
{
if(head==NULL)
{
head=creat(); //创建
print(head);
gets(useless);
}
else
{
head=shifang(head);
head=creat(); //重新创建
print(head);
gets(useless);
}
}
break;
case '2':
{
head=paixu(head); //排序
}
break;
case '3':
{
head=menu(head);
//综合操作
}
break;
case '4':
{
save(head); //文件保存
}
break;
case '5':
{
head=load(head); //文件输出
}
break;
case '6':
{
head=delete_txl(head); //删除
print(head);
}
break;
case '7':
head=shifang(head);
break;
default:
printf("操作错误,此项不存在!\n");
break;
}
if(strcmp(num,"7")==0)
break;
}
}