C++,代码美观,STL的稳定排序和用Lambda写小函数

成绩排序

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

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
    int n,flag;
    while(cin>>n>>flag)
    {
        vector<pair<string,int>> res(n);
        for(int i=0;i<n;i++)
        {
        cin>>res[i].first>>res[i].second;
        }
        if(flag==0)
        {
            stable_sort(res.begin(),res.end(),[](const pair<string,int> &a,const pair<string,int> &b){
                return a.second>b.second;
            });
        }
        else if(flag==1)
        {
            stable_sort(res.begin(),res.end(),[](const pair<string,int> &a,const pair<string,int> &b){
                return a.second<b.second;
            });
        }
        for(int i=0;i<n;i++)
            cout<<res.at(i).first<<" "<<res.at(i).second<<endl;
    }
    return 0;
}
全部评论
用系统函数不算作弊吗
点赞 回复 分享
发布于 2022-01-25 09:12
谢谢
点赞 回复 分享
发布于 2022-04-14 12:04
stable_sort({})这种格式的函数还第一次见 有大佬解释一下吗
点赞 回复 分享
发布于 2022-05-08 15:00
调库侠,机考的时候别哭
点赞 回复 分享
发布于 2023-04-05 00:49 香港

相关推荐

我在朝九晚六双休的联想等你:如果我是你,身体素质好我会去参军,然后走士兵计划考研211只需要200多分。
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
评论
37
7
分享
牛客网
牛客企业服务