题目(模板)
给定一个序列,找出这个序列中是否有一个数字出现的次数超过数组长度的一半,若有输出这个数
Leetcode169
样例
Input
16
7 7 5 7 5 1 5 7 5 5 7 7 7 7 7 7
Output
7
思路
维护一个临时众数 \(candidate\) 和它出现的此时 \(count\)
初始设 \(candidate\) 为任意值(为方便可以设其为第1个数)、\(count\)为 \(0\)
遍历 \(a\) 中的所有元素,对于每个元素,如果在 \(x\) 之前,\(count\) 的值为 \(0\) 那么 \(candidate=x\)
然后判断\(x\):
- 若 \(x\) 和 \(candidate\) 相等, \(count\) 就+1
- 若 \(x\) 和 \(candidate\) 不相等, \(count\) 就-1
nums: [7, 7, 5, 7, 5, 1 | 5, 7 | 5, 5, 7, 7 | 7, 7, 7, 7]
candidate: 7 7 7 7 7 7 5 5 5 5 5 5 7 7 7 7
count: 1 2 1 2 1 0 1 0 1 2 1 0 1 2 3 4
最后的 \(candidate\) 就是答案
代码
int n;
cin>>n;
for(int i=1;i<=n;i++)
cin>>a[i];
int candidate=a[1],count=1;
for(int i=2;i<=n;i++)
{
if(count==0)
candidate=a[i];
if(a[i]==candidate)
count++;
else
count--;
//cout<<candidate<<" "<<count<<endl;
}
cout<<candidate<<endl;