map的应用hdu1004


#include
#include
#include
#include
#include
#include
using namespace std;
map ball;
int main(){
    int n,i,j;
    string s;
    //freopen("in.txt","r",stdin);
    while (scanf("%d",&n)==1 && n!=0){
        ball.erase(ball.begin(),ball.end());   //map中旧元素的删除
        for (i=1;i<=n;i++){
            cin>>s;
            if (!ball.count(s))                //判断字符串s是否存在,返回1或0;还可以用find(),返回值是map的迭代器
                ball[s]=1;                      //map的赋值可以直接用数组形式 
            else ball[s]++;
        }
        int Max=0;
        string maxstring;
        map::iterator ite=ball.begin();//map迭代器的使用
        for (ite=ball.begin();ite!=ball.end();ite++)
        if (ite->second>Max) {                  //map中第一个第二个元素用first、second表示
            Max=ite->second;
            maxstring=ite->first;
        }
        cout<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值