【ACM】PAT-A1083 List Grades 【排序】

本篇博客介绍了一道PAT-A1083题目的解决方案,通过使用C++结构体和排序算法来实现成绩的高效筛选和展示。文章详细展示了如何读取学生姓名、ID及分数,并按分数进行排序后输出指定范围内的学生信息。

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

题目链接
题目分析
解题思路

结构体整体排序后按条件筛选即可


AC程序(C++)
/**************************
//@Author: 3stone
//@ACM: PAT-A1083 List Grades
//@Time: 18/1/27
//@IDE: VS2017
***************************/
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
#include<cstring>
#include<map>

using namespace std;

typedef struct {
    string name;
    string id;
    int grade;
}Stu;

bool cmp(Stu s1, Stu s2) {
    return s1.grade > s2.grade;
}

Stu stu[100010];

int main() {
    int n, low, high, count = 0;
    char name[20], id[20];

    //输入
    scanf("%d%d", &n);
    for (int i = 0; i < n; i++) { //input
        scanf("%s %s %d", name, id, &stu[i].grade);
        stu[i].name = name;
        stu[i].id = id;
    }
    scanf("%d%d", &low, &high);

    sort(stu, stu + n, cmp);

    for (int j = 0; j < n; j++) {
        if (low <= stu[j].grade && stu[j].grade <= high) {
            printf("%s %s\n", stu[j].name.c_str(), stu[j].id.c_str());
            count++;
        }
    }
    if (count == 0) printf("NONE\n");


    system("pause");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值