题解 | #成绩排序#

#include <iostream>
#include <algorithm>
#include<string>
using namespace std;

struct student {     string name;     int score;
};

bool cmp0(student x, student y) {     return x.score > y.score;
}

int main()
{     struct student stu[200];     int n, tag;     cin >> n >> tag;     for (int i = 0; i < n; i++) {         cin >> stu[i].name >> stu[i].score;     }     if (tag == 0) stable_sort(stu, stu + n, cmp0);     if (tag == 1) stable_sort(stu, stu + n, [](student x, student y) {return x.score < y.score; });     for (int i = 0; i < n; i++)             cout << stu[i].name << ' ' << stu[i].score << endl;
}

知识点:结构体。sort函数
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:46
点赞 评论 收藏
分享
三年之期已到我的offer快到碗里来:9硕都比不上9本
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务