key-value结构排序:给定一个字符串,统计每个字符出现频率,先按value降序,再按key升序

2021-04-21 03:28

阅读:699

标签:cto   include   space   iostream   排序   ios   first   pre   函数   

对于key-value结构的排序
第一种:lambda表达式
第二种:函数
第三种:类对()的重载,仿函数形式
#include 
#include 
#include 
#include 
#include 
using namespace std;

bool cmp(pair v1, pair v2)
{
    if (v1.second == v2.second)
        return v1.first v2.second;
}

struct Cmp
{
    bool operator()(pair v1, pair v2)
    {
        if (v1.second == v2.second)
            return v1.first v2.second;
    }
};

int main()
{
    string s;
    while (cin >> s)
    {
        unordered_map m;
        for (auto& e : s)
        {
            m[e]++;
        }
        vector> v;
        for (auto& e : m)
        {
            v.emplace_back(e.first, e.second);
        }
        /*第一种
        sort(v.begin(), v.end(), [](pair v1, pair v2){
        if (v1.second == v2.second)
        return v1.first v2.second;
        });
        */

        /*第二种
        sort(v.begin(), v.end(), cmp);
        */

        /*第三种
        sort(v.begin(), v.end(), Cmp());
        */
    }
    return 0;
}

key-value结构排序:给定一个字符串,统计每个字符出现频率,先按value降序,再按key升序

标签:cto   include   space   iostream   排序   ios   first   pre   函数   

原文地址:https://blog.51cto.com/14233078/2510096


评论


亲,登录后才可以留言!