347. 前 K 个高频元素

本文介绍了两种方法来解决找到数组中出现频率最高的K个元素的问题。第一种方法是先使用哈希表统计每个数字的频率,然后转为有序对并排序,最后返回前K个元素。第二种方法利用优先队列(小根堆)在保持堆大小为K的情况下,实时更新频率最高的元素。这两种方法的时间复杂度分别为O(nlogk)和O(nlogk)。
摘要由CSDN通过智能技术生成

原题链接:347. 前 K 个高频元素

solution:

        先计算每个数字出现的次数,在根据出现次数进行排序,最后输出,时间复杂度sort(nlogk),k为vector中元素个数,最坏情况nlogn,每个元素出现1次

class Solution {
public:
    typedef pair<int,int> PII;
    vector<int> topKFrequent(vector<int>& nums, int k) {
        unordered_map<int,int> map;
        for(auto &x : nums){
            map[x]++;
        }
        vector<PII> vec;    //将unordered_map值保存
        for(auto it = map.begin();it != map.end();it++)
            vec.push_back({it->first,it->second});  //first=key,second=value
        sort(vec.begin(),vec.end(),[](const PII &a,const PII &b){
            return a.second > b.second;
        });
        vector<int> res;    //定义返回值
        for(int i = 0;i < k;i++)
            res.push_back(vec[i].first);
        return res;
    }
};

统计次数,再用小根堆排序

时间复杂度nlogk,k为堆大小

class Solution {
public:
    typedef pair<int,int> PII;
    vector<int> topKFrequent(vector<int>& nums, int k) {
        unordered_map<int,int> map;
        for(auto &x : nums){
            map[x]++;
        }

        priority_queue<PII,vector<PII>,greater<PII>> q; //定义小根堆,默认以first排序

        int i = 0;
        for(auto &it : map)
        {
            if(i < k)
            {
                i++;
                q.push({it.second,it.first});
            }else
            {
                if(it.second > q.top().first)
                {
                    q.pop();
                    q.push({it.second,it.first});
                }
            }
        }

        vector<int> res;    //定义返回值
        for(int i = 0;i < k;i++){
            auto t = q.top();
            res.push_back(t.second);
            q.pop();
        }
        return res;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值