初次使用结构体解决学生成绩排列问题

本博客展示了如何根据学生在GradeExam.cpp中的正确答案数量对学生进行排序,详细介绍了使用结构体stu实现排序逻辑,并提供了样例输入输出及代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

                                                                             Sorting students on grades

Description

Rewrite Listing 6.12, GradeExam.cpp, to display the students in increasing order of  the number of correct answers. 
Suppose the answers for all students are stored in a two-dimensional array. 
Each row  records an student's ten answers with ten columns. 
For example, the following array  stores the answers for 3 students.                               
                    0   1   2   3   4   5   6   7   8   9    

Student   0   A   B   A   C   C   D   E   E   A   D    

Student   1   D   B   D   C   C   D   A   E   A   D    

Student   2   E   D   D   A   C   B   E   E   A   D     

The key is stored in a one-dimensional array, as follows:                              

                   0   1    2    3    4   5    6   7   8    9   

  Key           D   B   D   C   C   D   A   E   A   D    

Input

The first line is a positive integer t for the number of test cases.
Each test case contains m+2 lines. The line 1 contains an integer m (0<m<=100) for number of the stuents. Then followed m lines, each line contains 10 integers seperated by blanks, for one student's answers. The last line contains the correct answers.

Output

For each test case,output each student's number and the number of correct answers in increasing order of the number of correct answers. Use the format like the sample output.
 

Sample Input
2
3
A B A C C D E E A D
D B D C C D A E A D
E D D A C B E E A D
D B D C C D A E A D
2
B B E C C D E E A D
A B D C C D E E A D
A B D C C D E E B D
Sample Output
test case 1:
Student 2: 5
Student 0: 7
Student 1: 10
test case 2:
Student 0: 7
Student 1: 9

代码如下:

#include<bits/stdc++.h>
using namespace std;
struct stu//首先创建一个名为stu的结构体,里面有学生的id跟学生的成绩。
{
    int id;
    int grade;
};
int cmp(stu a,stu b)
{
    return a.grade<b.grade;//定义一个排序规则,通过学生的成绩进行排序
}
int main()
{
    int m;
    cin>>m;
    for(int h=0;h<m;h++)
    {
        int n;
        cin>>n;
        stu studen[101];//创建studen结构体
        char score[n+1][10];//这是记录成绩的数组
        for(int i=0;i<n+1;i++)
        {
            for(int j=0;j<10;j++)
            {
                cin>>score[i][j];
            }
        }
        
        for(int i=0;i<n;i++)
        {
            int count=0;
            for(int j=0;j<10;j++)
            {
                if(score[i][j]==score[n][j]) count++;
            }
            studen[i].id=i;//通过studen.id或studen.grade来调用结构体内的内容。
            studen[i].grade=count;
        }
        sort(studen,studen+n,cmp);//用学生的成绩进行排序,排序完后id与成绩仍保持对应关系。只不过对应的结
        cout<<"test case "<<h+1<<":"<<endl;                                                                                       //构体不同。
        for(int i=0;i<n;i++)
        {
            cout<<"Student "<<studen[i].id<<": "<<studen[i].grade<<endl;
        }
        
    }
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值