STL----map

Posted jrfr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL----map相关的知识,希望对你有一定的参考价值。

h.find(x)返回key为x的二元组,返回指向该二元组的迭代器,不存在则返回h.end()。

 

 

查询字符串出现的次数

    rep(i,1,n){
        string str;
        cin>>str;
        h[str]++;
    }
    rep(i,1,m){
        string str;
        //h[i]查找不存在时候,会新建立一个二元组,会产生多余空间,所以先用find查询有无。
        if(h.find(str) == h.end()) cout<<0<<endl;
        else cout<<h[str]<<endl;
    }

 

以上是关于STL----map的主要内容,如果未能解决你的问题,请参考以下文章

[C++STL]map容器用法介绍

hdu2648 STL map的简单应用

POJ 2503Babelfish(水题)stl map存取即可

stl map 使用

STL:map用法总结

(转载)STL map与Boost unordered_map的比较