Majority Element

本文介绍了如何使用C++实现寻找数组中超过一半的元素的方法,包括两种不同的解决方案,并讨论了如何验证找到的元素是否真正为多数元素。

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.

题目大意:

找出数组中超过一半的数。

 

C++实现代码:

#include<iostream>
#include<vector>
using namespace std;

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

int main()
{
    vector<int> num={3,3,3,3,3,3,1,2,4,5,3,45,2,54};
    Solution s;
    cout<<s.majorityElement(num)<<endl;
}

 

#include<iostream>
#include<vector>
using namespace std;

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

int main()
{
    vector<int> num={3,3,3,3,3,3,1,2,5,3,45,2,54};
    Solution s;
    cout<<s.majorityElement(num)<<endl;
}

 如果要找当好出现一半的数呢?此时这个数可能是通过上面的办法找到的那个数,也可能是最后一个数,因此,只需要再次遍历数组,找出与最后一个数相等的数的个数,如果小于一半,那么上面找出的数就是刚好出现一半的数,否则最后一个数是刚好出现一半的数。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值