当前位置:   article > 正文

Leetcode刷题之——前K个高频元素(中等难度)-python解决_leetcode 中等难度

leetcode 中等难度

题目描述:

解决方案一:计数函数直接返回

代码如下:

  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. return [item[0] for item in collections.Counter(nums).most_common(k)]

提交结果:

解决方案二:桶排序

 

代码如下:
 

  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. from collections import Counter
  9. c = Counter(nums)
  10. buckets = [[] for _ in range(len(nums) + 1)]
  11. for x, y in c.items():
  12. buckets[y].append(x)
  13. res = []
  14. for i in range(len(nums), -1, -1):
  15. if len(res) > k:
  16. break
  17. res.extend(buckets[i])
  18. return res[:k]

提交结果:

 

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

闽ICP备14008679号