题目地址(169. 多数元素)

Posted 潜行前行

tags:

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

题目地址(169. 多数元素)

https://leetcode.cn/problems/majority-element/

题目描述

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

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

 

示例 1:

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

示例 2:

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


 

提示:
n == nums.length
1 <= n <= 5 * 104
-109 <= nums[i] <= 109

 

进阶:尝试设计时间复杂度为 O(n)、空间复杂度为 O(1) 的算法解决此问题。

关键点

  • 计算个数即可

代码

  • 语言支持:Java

Java Code:


class Solution 
    public int majorityElement(int[] nums) 
        // 多数大于n/2
        int res = Integer.MIN_VALUE;
        int count = 0;
        for(int item : nums)
            if(count == 0)
                res = item;
            
            count += (res == item) ? 1 : -1;
        
        return res;
    


复杂度分析

令 n 为数组长度。

  • 时间复杂度: O ( n ) O(n) O(n)
  • 空间复杂度: O ( n ) O(n) O(n)

以上是关于题目地址(169. 多数元素)的主要内容,如果未能解决你的问题,请参考以下文章

[E摩尔投票] lc169. 多数元素(多数投票算法+经典)

169. 多数元素

LeetCode 169. 多数元素

LeetCode 169. 多数元素

LeetCode(算法)- 169. 多数元素

LeetCode(算法)- 169. 多数元素