leetcode347.前K个高频元素

先使用map,统计每个字符出现的频率,然后使用优先队列根据字符出现频率存储字符,然后弹出堆中元素,弹出K次完成操作!

如果看不懂本题CPP语法的,可以参考我的另外一篇博客------------->CPP优先队列priority_queue,定义比较器,重载operator()

cpp 复制代码
class less1{
    public:
    bool operator()(const pair<int,int>& p1,const pair<int,int>& p2){
        return p1.second<p2.second;
    }
};

class Solution {
public:
    vector<int> topKFrequent(vector<int>& nums, int k) {
        unordered_map<int,int> m;
        vector<int> ans;
        for(int i=0;i<nums.size();++i){
            m[nums[i]]++;
        }
        priority_queue<pair<int,int>,vector<pair<int,int>>,less1> pq;
        for(const auto& item:m){
            pq.push(item);
        }
        for(int i=0;i<k;++i){
            ans.push_back(pq.top().first);
            pq.pop();
        }
        return ans;
    }
};
相关推荐
Fanxt_Ja4 天前
【LeetCode】算法详解#2 ---和为k的子数组
java·数据结构·算法·leetcode·idea·哈希表
ゞ 正在缓冲99%…8 天前
leetcode560.和为k的子数组
leetcode·前缀和·哈希表
hnjzsyjyj15 天前
AcWing 839:模拟堆 ← multiset + unordered_map
橘颂TA17 天前
【C++】树和二叉树的实现(上)
数据结构·算法·二叉树·
azaz_plus19 天前
C++ priority_queue 堆
开发语言·c++·stl··priority_queue
DARLING Zero two♡1 个月前
【初阶数据结构】森林里的树影 “堆” 光:堆
c语言·数据结构·c++··
Ronin-Lotus1 个月前
程序代码篇---C/C++中的变量存储位置
c语言·c++···静态区·文字常量区·变量存储位置
m0_675988231 个月前
Leetcode350:两个数组的交集 II
算法·leetcode·数组·哈希表·python3
大模型铲屎官1 个月前
哈希表入门到精通:从原理到 Python 实现全解析
开发语言·数据结构·python·算法·哈希算法·哈希表
Lostgreen2 个月前
堆(Heap)的原理与C++实现
数据结构·堆排序·