347. Top K Frequent Elements
Given a non-empty array of integers, return the k most frequent elements.
Example 1:
Input: nums = [1,1,1,2,2,3], k = 2
Output: [1,2]Example 2:
Input: nums = [1], k = 1
Output: [1]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.
解题要点:
PriorityQueue解法,Python有自带的方法,heapq.nlargest(),详情看下面code。Java版本需要注意的一点是,创建新PriorityQueue时,加上属性由之前创建好的记个数的map中的value(出现次数)来进行判断大额在顶端,小额在底部。具体看下面code。
Python:
import heapq
class Solution(object):
def topKFrequent(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: List[int]
"""
mydict = {}
for n in nums:
if n not in mydict:
mydict[n] = 1
else:
mydict[n] += 1
return heapq.nlargest(k, mydict.keys(), key = mydict.get)Java:
解法二:(桶排序)
桶排序是把数字出现的次数作为index,把数字放在一个array里。
Java:
Python:
Last updated