首页 > 其他 > 详细

4.2散列:用map实现重复元素数目的计算

时间:2021-02-12 08:14:46      阅读:33      评论:0      收藏:0      [点我收藏+]
#include <iostream>
#include<map>
#include<string>
#include<cstdio>
using namespace std;

int main()
{
    map<string,int>str;
    int n,m;
    scanf("%d %d",&n,&m);
    string t;
    for(int i=0;i<n;++i){
        cin>>t;
        if(str.count(t)==0){
            str[t]=1;
        }else{
            str[t]+=1;
        }
    }

    for(int i=0;i<n;i++){
        cin>>t;
        cout<<t<<" "<<str.count(t)<<endl;
    }
    return 0;
}

4 3
qwe
eee
qwer
asdf

qwe
qwe 1
eee
eee 1
qqqqq
qqqqq 0


4.2散列:用map实现重复元素数目的计算

原文:https://www.cnblogs.com/huzhengyu/p/14398174.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!