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;
    }
};
全部评论

相关推荐

2024-12-27 10:21
已编辑
海南师范大学 媒介策划
到我怀里来:身高体重住址这些就别写了,留几个关键的就行,工作经历突出重点写详细点
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务