169. 求众数

Posted stefan-24-machine

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了169. 求众数相关的知识,希望对你有一定的参考价值。

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

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

示例 1:

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

示例 2:

输入: [2,2,1,1,1,2,2]
输出: 2
class Solution {
    public int majorityElement(int[] nums) {
        Arrays.sort(nums);
        return nums[nums.length/2];
    }
}

  

以上是关于169. 求众数的主要内容,如果未能解决你的问题,请参考以下文章

169. 求众数

LeetCode(169. 求众数)

LeetCode--169--求众数

169. Majority Element求众数

Leetcode#169. Majority Element(求众数)

leetcode169 python3 92ms 求众数