LeetCode 347. 前 K 个高频元素(哈希/优先队列)

文章目录

    • 1. 题目
    • 2. 解题
      • 2.1 哈希
      • 2.2 优先队列

1. 题目

给定一个非空的整数数组,返回其中出现频率前 k 高的元素。

示例 1:
输入: nums = [1,1,1,2,2,3], k = 2
输出: [1,2]

示例 2:
输入: nums = [1], k = 1
输出: [1]
说明:
你可以假设给定的 k 总是合理的,且 1 ≤ k ≤ 数组中不相同的元素的个数。
你的算法的时间复杂度必须优于 O(n log n) , n 是数组的大小。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/top-k-frequent-elements
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题

2.1 哈希

class Solution {
public:
    vector<int> topKFrequent(vector<int>& nums, int k) {
        unordered_map<int,int> m;
        vector<int> ans;
        for(int num:nums)
        	m[num]++;
        vector<pair<int,int>> v(m.begin(), m.end());//map不支持排序,转成vector
        sort(v.begin(), v.end(),[](pair<int,int> &a, pair<int,int> &b)
        		{return a.second > b.second;});	//新的比较函数写法
        auto it = v.begin();
        while(k--)
        {
        	ans.push_back(it->first);
        	++it;
        }
        return ans;
    }
};

LeetCode 347. 前 K 个高频元素(哈希/优先队列)_第1张图片

2.2 优先队列

class Solution {
	struct cmp//必须写struct,不能写class
	{
		bool operator()(pair<int, int>& a, pair<int, int>& b)
		{ return a.second > b.second; }//小顶堆
	};
public:
    vector<int> topKFrequent(vector<int>& nums, int k) {
        unordered_map<int,int> m;
        vector<int> ans;
        for(int num:nums)
        	m[num]++;
        priority_queue<pair<int,int>,vector<pair<int,int>>, cmp> q;
        for(auto a:m)
        {
        	q.push(a);
        	if(q.size() > k)
        		q.pop();
        }
        while(!q.empty())
        {
        	ans.push_back(q.top().first);
        	q.pop();
        }
        return ans;
    }
};

你可能感兴趣的:(LeetCode)