首页 > 代码库 > HDU 1004
HDU 1004
第一次写map 纪念
1 #include <map> 2 #include <cstdio> 3 #include <iostream> 4 #include <string> 5 #include <cstring> 6 #include <string.h> 7 using namespace std; 8 map<string,int> a; 9 int main(){10 int t,max1;11 string s,k;12 while(scanf("%d",&t)!=EOF){13 if(t==0)break;14 max1=0;15 while(t--){16 cin>>s;17 a[s]++;18 if(a[s]>max1){max1=a[s];k=s;}19 }20 cout<<k<<endl;21 }22 return 0;23 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。