HDU1004
Posted benzikun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU1004相关的知识,希望对你有一定的参考价值。
#include <bits/stdc++.h> using namespace std; int main() { map<string,int>::iterator it; map<string,int> p; string s,ans; int n; while(cin>>n,n) { p.clear();//否则上一次的仍会被记录 for(int i=1;i<=n;i++) { cin>>s; p[s]++; } int maxn=0; for(it=p.begin();it!=p.end();it++) { if(it->second>maxn) { maxn=it->second; ans=it->first; } } cout<<ans<<endl; } return 0; }
受UVa540的影响,刚刚学了map,UVa540中用map<int,int>写了一个数组,于是就想着用map<string,int>写一个记录string类型的数组,第一次没有清空map,长了教训
以上是关于HDU1004的主要内容,如果未能解决你的问题,请参考以下文章