题解 | #成绩排序#

成绩排序

https://www.nowcoder.com/practice/0383714a1bb749499050d2e0610418b1

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

struct Student{
    string name;
    int score;
};

bool Compare_inc(Student a,Student b){
        return a.score<b.score;
}

bool Compare_dec(Student a,Student b){
        return a.score>b.score;
}

int main() {
    int n, mode;
    while (cin >> n >> mode) { // 注意 while 处理多个 case
        vector<Student> arr(n);
        for(int i=0;i<n;i++){
            cin>>arr[i].name>>arr[i].score;
        }
        if(mode)
            stable_sort(arr.begin(),arr.end(),Compare_inc);
        else
            stable_sort(arr.begin(),arr.end(),Compare_dec);
        for(auto item:arr){
            cout<<item.name<<" "<<item.score<<endl;
        }
    }
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

有没有什么神仙小厂啊!想去,感觉对大厂去魅了
野猪不是猪🐗:小厂最大的问题就是,你不知道哪天公司就直接🈚️了。大厂被裁,拿着大厂履历也不难再找,小厂寄了那后面有没有人要你就不好说了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务