学习笔记 | Python版 剑指 Offer 39. 数组中出现次数超过一半的数字

剑指 Offer 39. 数组中出现次数超过一半的数字

  • 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。

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

示例 1:

输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2

限制:

1 <= 数组长度 <= 50000
class Solution(object):
    def majorityElement(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        if not nums:
            return None
        
        ret = nums[0]
        times = 1
        n = len(nums)
        for i in range(1,n):
            if times == 0:
                ret = nums[i]
                times = 1
            elif nums[i] == ret:
                times += 1
            else:
                times -= 1

        return ret

你可能感兴趣的:(#,LeetCode,数组中出现次数超过一半的数字,剑指,Offer,39.)