欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LeetCode-169. 求众数

程序员文章站 2024-03-04 10:20:53
...

169. 求众数


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

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

示例 1:

输入: [3,2,3]
输出: 3

示例 2:

输入: [2,2,1,1,1,2,2]
输出: 2

解题思路1:使用计数器对数组中的元素个数进行统计,其中个数大于n//2的元素就是众数。

Python3代码如下:

class Solution(object):
    def majorityElement(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        d = collections.Counter(nums)
        for k,v in d.items():
            if v > len(nums)//2:
                return k
        

LeetCode-169. 求众数

解题思路2:因为数组中一定存在众数,因此将数组进行排序后,中间位置的数一定是众数。

Python3代码如下:

class Solution(object):
    def majorityElement(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        nums.sort()
        return nums[len(nums)//2]
        

LeetCode-169. 求众数

相关标签: Easy