博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU1004
阅读量:5241 次
发布时间:2019-06-14

本文共 689 字,大约阅读时间需要 2 分钟。

#include 
using namespace std;int main(){ map
::iterator it; map
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<
<

受UVa540的影响,刚刚学了map,UVa540中用map<int,int>写了一个数组,于是就想着用map<string,int>写一个记录string类型的数组,第一次没有清空map,长了教训

转载于:https://www.cnblogs.com/benzikun/p/10505629.html

你可能感兴趣的文章
PS 滤镜— — sparkle 效果
查看>>
snmpwalk命令常用方法总结
查看>>
网站产品设计
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
2.1命令行和JSON的配置「深入浅出ASP.NET Core系列」
查看>>