[MSTL] lc451. 根据字符出现频率排序(STL+哈希表)

Posted Ypuyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[MSTL] lc451. 根据字符出现频率排序(STL+哈希表)相关的知识,希望对你有一定的参考价值。

1. 题目来源

链接:451. 根据字符出现频率排序

2. 题目解析

STL 题目。

统计每个字符出现次数,按次数从大到小排序后输出即可。

就是练习 STL 应用的,sort 的自定义排序…


时间复杂度: O ( n l o g n ) O(nlogn) O(nlogn)
空间复杂度: O ( n ) O(n) O(n)


STL

class Solution {
public:
    string frequencySort(string s) {
        string res;
        unordered_map<char, int> mp;
        for (char &e : s) mp[e] ++ ;
        vector<pair<char, int>> a;
        for (auto [k, v] : mp) a.push_back({k, v});
        
        sort(a.begin(), a.end(), [&](const pair<char, int>& p1, const pair<char, int>& p2){
            return p1.second > p2.second;
        });
        
        for (auto [k, c] : a) res += string(c, k);

        return res;
    }
};

以上是关于[MSTL] lc451. 根据字符出现频率排序(STL+哈希表)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 451 根据字符出现频率排序

LeetCode Algorithm 451. 根据字符出现频率排序

Leetcode 451.根据字符出现频率排序

leetcode中等451根据字符出现频率排序

leetcode中等451根据字符出现频率排序

leetcode中等451根据字符出现频率排序