当前位置:   article > 正文

(Leetcode) 前 K 个高频元素 - Python实现_求前 k 个高频元素设计对应的函数

求前 k 个高频元素设计对应的函数

题目:前 K 个高频元素
给定一个非空的整数数组,返回其中出现频率前 k 高的元素。
示例:
输入: nums = [1,1,1,2,2,3], k = 2。输出: [1,2]
输入: nums = [1], k = 1。输出: [1]
说明:
你可以假设给定的 k 总是合理的,且 1 ≤ k ≤ 数组中不相同的元素的个数。
你的算法的时间复杂度必须优于 O(n log n) , n 是数组的大小。

------------------------------------------------------------------------------------------------

解法1:通过字典排序的方式,时间复杂度 O(n log n)

  1. class Solution(object):
  2. def topKFrequent(self, nums, k):
  3. """
  4. :type nums: List[int]
  5. :type k: int
  6. :rtype: List[int]
  7. """
  8. if len(nums) == 0:
  9. return []
  10. dic = {}
  11. for num in nums:
  12. if num not in dic.keys():
  13. dic[num] = 1
  14. else:
  15. dic[num] += 1
  16. li = sorted(dic.items(), key=lambda x:x[1], reverse=True)
  17. return [item[0] for item in li[:k]]

解法2#: 通过Counter函数

  1. class Solution(object):
  2. def topKFrequent(self, nums, k):
  3. """
  4. :type nums: List[int]
  5. :type k: int
  6. :rtype: List[int]
  7. """
  8. if len(nums) == 0:
  9. return []
  10. li = collections.Counter(nums)
  11. return [x[0] for x in li.most_common(k)]

解法3:通过heapq方法

  1. class Solution(object):
  2. def topKFrequent(self, nums, k):
  3. """
  4. :type nums: List[int]
  5. :type k: int
  6. :rtype: List[int]
  7. """
  8. if len(nums) == 0:
  9. return []
  10. import heapq
  11. dic = dict()
  12. for num in nums:
  13. dic[num] = dic.get(num, 0) + 1
  14. li = list()
  15. for item in dic.items():
  16. if len(li) == k:
  17. if item[1] > li[0][0]:
  18. heapq.heappop(li)
  19. heapq.heappush(li, (item[1], item[0]))
  20. else:
  21. heapq.heappush(li, (item[1], item[0]))
  22. return [item[1] for item in li]

参考

https://www.cnblogs.com/MartinLwx/p/9707751.html

https://blog.csdn.net/ustbbsy/article/details/79637594

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/72803
推荐阅读
相关标签
  

闽ICP备14008679号