首页 > 代码库 > map容器
map容器
试题链接: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;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。