HDU 1004——Let the Balloon Rise

依然范特西╮ 提交于 2019-11-28 04:57:28

题解

#include<iostream>
#include<map>
using namespace std;

int main(){
    int n;
    while(~scanf("%d",&n) && n!=0){
        map<string,int> mp;
        map<string,int>::iterator it;
        string ch;
        for(int i=0;i<n;i++){ //注意 map容器的用法
            cin>>ch;
            mp[ch]++;
        }
        
        int cnt=0;
        string ans;
        for(it=mp.begin();it!=mp.end();it++)
            if(it->second >cnt){
                cnt=it->second;
                ans=it->first;
            }
        cout<<ans<<endl;
    }
    return 0;
}

 

map容器的使用,以及巧妙地在输入时就计算出各种颜色的数目

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!