码迷,mamicode.com
首页 > 其他好文 > 详细

347. Top K Frequent Elements

时间:2019-02-28 22:46:43      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:for   type   自己的   自己   com   self   策略   top   ever   

题目来源:
 
自我感觉难度/真实难度:
 
题意:
 
分析:
 
自己的代码:
class Solution:
    def topKFrequent(self, nums: List[int], k: int) -> List[int]:
        res=[]
        num={}
        for i in nums:
            if i not in num.keys():
                num.update(i=0)
            num[i]=num[i]+1
        topK=zip(num.values(),num.keys())
        topList=sorted(topK,key=lambda a:a[0],reverse=True)
        for j in range(0,k):
            res.append(topList[j][0])
        return res
代码效率/结果:
 
优秀代码:
class Solution3(object):
    def topKFrequent(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: List[int]
        """
        return [key for key, _ in collections.Counter(nums).most_common(k)]

 

 

代码效率/结果:
 
自己优化后的代码:
 
反思改进策略:

 

写题时间时长:

347. Top K Frequent Elements

标签:for   type   自己的   自己   com   self   策略   top   ever   

原文地址:https://www.cnblogs.com/captain-dl/p/10453537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!