题解 | #成绩排序#

成绩排序

https://www.nowcoder.com/practice/8e400fd9905747e4acc2aeed7240978b

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

// 降序
bool sortD(pair<string, int> s1, pair<string, int> s2)
{
    return s1.second > s2.second;
}

// 升序
bool sortU(pair<string, int> s1, pair<string, int> s2)
{
    return s1.second < s2.second;
}

int main()
{
    int num, type;
    cin >> num >> type;
    list<pair<string, int>> stus;
    for (int i = 0; i < num; i++)
    {
        string name;
        int grade;
        cin >> name >> grade;
        stus.push_back(pair<string, int>(name, grade));
    }
    if (type == 0)
    {
        stus.sort(sortD);
    }
    else if (type == 1)
    {
        stus.sort(sortU);
    }

    for(auto & s: stus){
        cout << s.first << " " << s.second << endl;
    }
}

C++的好处。list自带的排序功能拥有自定义排序方法的功能

要自己实现的话,写一个pair的冒泡排序也行

华为机试刷题记录 文章被收录于专栏

记录一下手打代码的解题思路方便复习

全部评论

相关推荐

在逃香菇:考研去92,我领导筛hr筛过的简历的时候明说了:普通学校的本硕没区别。我司今年秋招嵌入式软件这边已经没有本科生了
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务