题解 | #成绩排序#

成绩排序

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

我用了map,但是map不能用sort排序,所以我把它拷到vector,在排序,排序用的sort要是稳定的排序,不然他位置可能有交换。

#include <algorithm>
#include <sstream>
#include <map>
#include <functional>
#include <vector>


using namespace std;

int main() {
    int n;
    while(cin>>n){
        bool ascd=false;
        cin>>ascd;
        string str1,str2;
        multimap<int,string> m;
        for(int i =0;i<n;i++){
            istringstream s;
            cin>>str1;
            cin>>str2;
            m.insert(make_pair(stoi(str2), str1));
        }
        if(!ascd) {
            vector<pair<int,string>> v(m.begin(),m.end());
            stable_sort(v.begin(),v.end(),[](const pair<int,string> &a,
                                   const pair<int,string> &b){
                 return a.first>b.first;
            });
            auto it = v.begin();
            while(it!=v.end()){
                cout<<(*it).second<<' '<<(*it).first<<endl;
            it++;
            }
        }
        else{ 
            
        auto it = m.begin();
        while(it!=m.end()){
            cout<<(*it).second<<' '<<(*it).first<<endl;
            it++;
        }
        }
    }
}

全部评论

相关推荐

牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
11-09 01:22
已编辑
东南大学 Java
高级特工穿山甲:羡慕,我秋招有家企业在茶馆组织线下面试,约我过去“喝茶详谈”😢结果我去了发现原来是人家喝茶我看着
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务