📄 sort.c
字号:
/* 按测验成绩循序排序*/
#include "stdio.h"
void SortByScore()
{
int i,j,k;
student TmpS; /*定义进行操作时的临时结构体变量*/
student s[SIZE];/*SIZE,在score.h头文件中定义的常量,值为5 */
int recNumber = 0;
char DataFile[40] = "record"; /*DataFile存储排行榜信息的文件名*/
FILE *fp;/*fp指针指向存储数据的文件名*/
/*以读的方式打开文件,如文件不存在,提示错误*/
fp=fopen(DataFile,"rb");
if (fp == NULL)
{
printf("\nOpen file %s fail!End with any key\n",DataFile);
perror("Open file fail");
getch();
exit(1);
}
/*将文件中要排序的信息存入结构体数组*/
while((fread(&TmpS,sizeof(student),1,fp)) != (int)NULL)
{
strcpy(s[recNumber].name, TmpS.name);
s[recNumber].score=TmpS.score;
recNumber++;
}
fclose(fp);
/*====如果文件中有记录,则将各条记录按测验成绩值排序===*/
if(recNumber>1)
{
/*====用选择排序法进行按测验成绩的排序====*/
for(i=0;i<recNumber-1;i++)
{
k = i;
for(j=i+1;j<recNumber;j++)
{
if(s[k].score<s[j].score) k = j;
}
strcpy(TmpS.name,s[k].name);
TmpS.score = s[k].score;
strcpy(s[k].name,s[i].name);
s[k].score = s[i].score;
strcpy(s[i].name,TmpS.name);
s[i].score = TmpS.score;
}
/*将排序好的结构体记录写入排行榜文件*/
fp=fopen(DataFile,"wb+");
if (fp == NULL)
{
printf("\nSet up file %sfail !end with anykey.\n",DataFile);
perror("Set up fail");
getch();
exit(1);
}
for(i=0; i<recNumber; i++)
{
if(fwrite(&s[i],sizeof(student),1,fp)!=1)
{
printf("\nWrite file %s fail!end with anykey.\n",DataFile);
perror("Write file fail!");
getch();
exit(1);
}
}
fclose(fp);
}
/*显示排序后的排行榜文件*/
printf("the student's score in file %s is as flow:.\n",DataFile);
fp=fopen(DataFile,"rb");
if (fp == NULL)
{
printf("\nOpen file%sfail!End with any key \n",DataFile);
perror("Open file fail");
getch();
exit(1);
}
printf("\nname\tscore\n");
while(fread(&TmpS,sizeof(student),1,fp) != (int)NULL)
{
printf("\n%s\t%d\n",TmpS.name,TmpS.score);
}
fclose(fp);
getch();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -