码迷,mamicode.com
首页 > 其他好文 > 详细

347. 前 K 个高频元素

时间:2020-04-22 19:38:30      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:amp   queue   second   return   turn   top   pre   元素   cto   

 1 class Solution 
 2 {
 3 public:
 4     vector<int> topKFrequent(vector<int>& nums, int k) 
 5     {
 6         vector<int> res;
 7         unordered_map<int,int> hash;
 8         for(auto a : nums) hash[a] ++;
 9         priority_queue<pair<int,int>> pq;
10         for(auto a : hash) pq.push({a.second,a.first});
11         while(k --)
12         {
13             if(!pq.empty())
14             {
15                 res.push_back(pq.top().second);
16                 pq.pop();
17             }
18         }
19         return res;
20     }
21 };

 

347. 前 K 个高频元素

标签:amp   queue   second   return   turn   top   pre   元素   cto   

原文地址:https://www.cnblogs.com/yuhong1103/p/12755313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!