首页 > 其他 > 详细

【LeetCode】求众数

时间:2018-05-04 18:03:45      阅读:159      评论:0      收藏:0      [点我收藏+]

给定一个大小为 的数组,找到其中的众数。众数是指在数组中出现次数大于 ? n/2 ? 的元素。

你可以假设数组是非空的,并且给定的数组总是存在众数。

class Solution(object):
    def majorityElement(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        if len(nums) < 2:
            return nums[0]
        target = len(nums) / 2
        num_dic = {}
        for i in nums:
            if i in num_dic.keys():
                num_dic[i] += 1
            else:
                 num_dic[i] = 1
            if num_dic[i] > target:
                 return i

 

【LeetCode】求众数

原文:https://www.cnblogs.com/dreamyu/p/8991563.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!