赞
踩
2021-08-13
给你一个整数数组 nums 和一个整数 k ,请你返回其中出现频率前 k 高的元素。你可以按 任意顺序 返回答案。 示例 1: 输入: nums = [1,1,1,2,2,3], k = 2 输出: [1,2] 示例 2: 输入: nums = [1], k = 1 输出: [1] 提示: 1 <= nums.length <= 105 k 的取值范围是 [1, 数组中不相同的元素的个数] 题目数据保证答案唯一,换句话说,数组中前 k 个高频元素的集合是唯一的 进阶:你所设计算法的时间复杂度 必须 优于 O(n log n) ,其中 n 是数组大小。 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/top-k-frequent-elements 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路一
class Solution:
def topKFrequent(self, nums: List[int], k: int) -> List[int]:
import collections,heapq # 导入库函数
count = collections.Counter(nums)
return heapq.nlargest(k, count.keys(), key=count.get)
思路二
class Solution:
def topKFrequent(self, nums: List[int], k: int) -> List[int]:
dic1 = {}
n = len(nums)
for i in range(n):
dic1[nums[i]] = dic1.get(nums[i], 0) + 1
res = []
for j in range(k): # 返回字典中value最大值对应的key
res.append(max(dic1, key = dic1.get))
dic1[res[j]] = 0 # 归零,相当于剔除最大值,继续求第二最大值
return res
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。