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

CCF 201312-1 出现次数最多的数

时间:2015-08-13 14:12:36      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

典型MAP排序

#include"iostream"
#include"map"
using namespace std;
map<int,int> m;
int main(){
    int n;
    cin>>n;
    int i;
    m.clear();
    while(n--){
        cin>>i;
        if(m[i]==0)m[i]=1;
        else m[i]++;
    }
    int num=0,count=0;
    map<int,int>::iterator it;
    for(it=m.begin();it!=m.end();it++){
        if(it->second>count){
            num=it->first;
            count=it->second;
        }
    }
    cout<<num<<endl;
}

 

CCF 201312-1 出现次数最多的数

标签:

原文地址:http://www.cnblogs.com/lyqatdl/p/4726968.html

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