//写本题的题解的原因是第一次知道map可以解决统计气球时由于不知道气球的颜色英文有哪些的问题
#include <bits/stdc++.h>
using namespace std;
map<string,int>vis;
string temp,ans;
int n;
int main()
{
int i;
while(cin>>n&&n)
{
vis.clear();//注意每次map使用后需要清空,否则无法通过
while(n--)
{
cin>>temp;
vis[temp]++;
if(vis[ans]<vis[temp])
{
vis[ans]=vis[temp];
ans=temp;
}
}
cout<<ans<<endl;
}
return 0;
}
林大OJ549-气球-string->map
最新推荐文章于 2025-01-01 12:40:30 发布