[leetcode] 347. Top K Frequent Elements 解题报告

38 篇文章 0 订阅
6 篇文章 0 订阅

题目链接:https://leetcode.com/problems/top-k-frequent-elements/

Given a non-empty array of integers, return the k most frequent elements.

For example,
Given [1,1,1,2,2,3] and k = 2, return [1,2].

Note: 

  • You may assume k is always valid, 1 ≤ k ≤ number of unique elements.
  • Your algorithm's time complexity must be better than O(n log n), where n is the array's size.

思路: 用一个hash表计数所有的元素, 然后将其以元素个数为key放入优先队列中去, 然后取出前k个就是了, 涉及到两个比较高级的数据结构, unordered_map, 和priority_queue, 另外优先队列因为是以计数为key, 所有要将元素和其计数以pair的形式入队列, 然后要将计数值为pair的第一个, 元素值为第二个. 之后取出优先队列的前k个数就是了.

代码如下:

class Solution {
public:
    vector<int> topKFrequent(vector<int>& nums, int k) {
        unordered_map<int, int> hash;
        vector<int> result;
        for(auto val: nums) hash[val]++;
        priority_queue<pair<int, int>> que;
        for(auto val: hash) que.push(make_pair(val.second, val.first));
        while(k--)
        {
            auto val= que.top();
            result.push_back(val.second);
            que.pop();
        }    
        return result;
    }
};



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值