链接如下:
试一下map函数.
这篇文章的生词有
empire 帝国
nonnegative integer 非负整数
eligible 合适的,有资格的
#include<stdio.h>
#include<map>
using namespace std;
int main()
{
int i,n,max;
map<int,int>mp;
while(scanf("%d",&n)!=EOF){
mp.clear();
while(n--){
scanf("%d",&i);
mp[i]++;
}
map<int,int>::iterator it;
max=0;
for(it=mp.begin();it!=mp.end();it++)
if(max<it->second) max=it->second;
printf("%d\n",max);
}
return 0;
}
网友评论