题解 | #字符统计#

字符统计

https://www.nowcoder.com/practice/c1f9561de1e240099bdb904765da9ad0

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

int main() {
    string strs;
    cin >> strs;
    map<char, int> data;
    for (int i = 0;i < strs.size();i++)
    {
        data[strs[i]] += 1;
    }
    vector<pair<char,int>> temp(data.begin(),data.end());

    sort(temp.begin(),temp.end(),[](const pair<char,int> a,const pair<char,int> b)
    {
        if (a.second != b.second)
        {
            return a.second > b.second;
        }
        else
        {
            return a.first < b.first;
        }
    });

    for (auto it : temp)
    {
        cout << it.first;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

头像
11-27 14:28
长沙理工大学
刷算法真的是提升代码能力最快的方法吗?&nbsp;刷算法真的是提升代码能力最快的方法吗?
牛牛不会牛泪:看你想提升什么,代码能力太宽泛了,是想提升算法能力还是工程能力? 工程能力做项目找实习,算法也分数据结构算法题和深度学习之类算法
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务