码迷,mamicode.com
首页 > 其他好文 > 详细

Majority Element

时间:2014-12-23 11:56:55      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

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;
}

 

Majority Element

标签:

原文地址:http://www.cnblogs.com/wuchanming/p/4179702.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!