赞
踩
给定一个非空的整数数组,返回其中出现频率前 k 高的元素。
示例 1:
- 输入: nums = [1,1,1,2,2,3], k = 2
- 输出: [1,2]
示例 2:
- 输入: nums = [1], k = 1
- 输出: [1]
说明:
解题思路:使用字典记录不同元素的个数,再利用Counter().most_common(k)方法即可得到字典中前k个高频元素与其频数组成的列表[(element1,num1),(element2,num2),...]。
Python3代码如下:
- class Solution(object):
- def topKFrequent(self, nums, k):
- """
- :type nums: List[int]
- :type k: int
- :rtype: List[int]
- """
- result = []
- d = collections.Counter(nums).most_common(k)
- for e in d:
- result.append(e[0])
- return result
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。