首页 > 其他 > 详细

map容器

时间:2014-08-04 21:16:38      阅读:227      评论:0      收藏:0      [点我收藏+]

试题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1004

试题分析:本题如果使用预定义的map类会非常的方便

#include<iostream>
#include<map>
#include<string>

using namespace std;

int n,maxNum;
string a;
string maxColor;
map<string,int> ballon;
int main()
{

    while(cin>>n)
    {

        if(!n)break;
        maxNum = 0;
        ballon.clear();
        
       for(int i=0;i<n;i++){

    cin>>a;
                ballon[a]++;
        }
        map<string,int>::iterator ite;
        for(ite = ballon.begin();ite!=ballon.end();ite++){
            if(ite->second >maxNum){
                maxNum = ite->second;
                maxColor = ite->first;
            }
        }
        cout<<maxColor<<endl;
    }
    return 0;
}

 

map容器,布布扣,bubuko.com

map容器

原文:http://www.cnblogs.com/tianxia2s/p/3890866.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!