LeetCode: 169. Majority Element

LeetCode: 169. Majority Element

题目描述

Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.

You may assume that the array is non-empty and the majority element always exist in the array.

Example 1:

Input: [3,2,3]
Output: 3

Example 2:

Input: [2,2,1,1,1,2,2]
Output: 2

解题思路

由于主元素(Majority Element) 的定义是出现次数超过半数的元素,且一定存在。因此,如果相邻元素不相等,直接丢弃,否则记录下它出现的次数, 留待和后面的比较。最后剩下的元素就主元素

AC 代码

class Solution {
public:
    int majorityElement(vector<int>& nums) {
        int lastNum = INT_MIN;
        int cnt = 0;
        for(size_t i = 0; i < nums.size(); ++i)
        {
            if(cnt == 0 || lastNum == nums[i])
            {
                ++cnt;
                lastNum = nums[i];
            }
            else
            {
                --cnt;
            }
        }

        return lastNum;
    }
};
全部评论

相关推荐

06-26 18:30
门头沟学院 Java
据说名字越长别人越关注你的昵称我觉得我要被关注了:你问问这里面有多少是正经候选人,而不是乱打招呼的
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
06-25 20:45
点赞 评论 收藏
分享
qq乃乃好喝到咩噗茶:院校后面加上211标签,放大加粗,招呼语也写上211
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务