码迷,mamicode.com
首页 > 编程语言 > 详细

寻找发帖水王(找出数组出现超过一半的数字)

时间:2015-04-12 17:48:53      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
using namespace std;
void find(int A[],int length)
{
int times=0;
int i=0;
int temp;
for(;i<length;++i)
{
if(times==0)
{
temp=A[i];
times=1;
}
else
{
if(A[i]==temp)
times++;
else
times--;
}
}
cout<<temp<<endl;
}
int main()
{
int a[]={1,1,1,2,2,2};
find(a,5);
system("pause");
return 0;
}

寻找发帖水王(找出数组出现超过一半的数字)

标签:

原文地址:http://blog.csdn.net/qq_22335577/article/details/45011419

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