Day75: 前 K 个高频元素
给定一个非空的整数数组,返回其中出现频率前 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 是数组的大小。
题目数据保证答案唯一,换句话说,数组中前 k 个高频元素的集合是唯一的。
你可以按任意顺序返回答案。
来源:力扣(LeetCode)
链接:力扣 https://leetcode-cn.com/problems/top-k-frequent-elements
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution(object):
def topKFrequent(self, nums, k):
from collections import Counter
counter = Counter(nums).most_common(k)
return [i[0] for i in counter]
def topKFrequent1(self, nums, k):
import heapq #使用堆
from collections import defaultdict
dict1 = defaultdict(int)
for i in nums:
dict1[i] += 1
heap = []
for key,value in dict1.items():
if len(heap) < k:
heapq.heappush(heap,[value,key])
else:
if value > heap[0][0]:
heapq.heapreplace(heap,[value,key])
print(heap)
return [i[1] for i in heap]
if name == 'main':
s = Solution()
print(s.topKFrequent1([1,1,1,2,2,3,3,3,3,3,3],2))
def test_topKFrequent():
s = Solution()
assert set(s.topKFrequent([1,1,1,2,2,3],2)) == {1,2}
assert set(s.topKFrequent([1],1)) == {1}
assert set(s.topKFrequent([3,0,1,0],1)) == {0}
def test_topKFrequent1():
s = Solution()
assert set(s.topKFrequent1([1,1,1,2,2,3],2)) == {1,2}
assert set(s.topKFrequent1([1],1)) == {1}
assert set(s.topKFrequent1([3,0,1,0],1)) == {0}