其他分享
首页 > 其他分享> > 【力扣】[热题HOT100] 169.多数元素

【力扣】[热题HOT100] 169.多数元素

作者:互联网

1、题目

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

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

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

链接:https://leetcode-cn.com/problems/majority-element/

2、思路分析

摩尔投币法

摩尔投币法

3、代码展示

class Solution {
public:
    int majorityElement(vector<int>& nums) {
        int count = 0;
        int ans;
        for(int i = 0; i < (int)nums.size(); ++i)
        {
            if(count == 0)
            {
                ans = nums[i];
            }
            if(ans == nums[i])
            {
                count++;
            }
            else 
            {
                count--;
            }
        }
        return ans;
    }
};

标签:count,int,元素,力扣,num,HOT100,169,数组,ans
来源: https://blog.csdn.net/weixin_43967449/article/details/116713710