美文网首页
C++ map常用接口

C++ map常用接口

作者: 林逸凡_lyf | 来源:发表于2018-08-11 14:41 被阅读0次

    查找key是否存在

    if (enumMap.find(nFindKey) != enumMap.end()) { ... }
    

    排序

    map本身是按key排序存储的,如果想使用自定的排序规则可以传入第三参数

    map<string, int, greater<string> > name_score_map; //第三个参数为比较函数,用于key的排序
    

    如果希望使用value排序,一种办法是将map的pair存到vector中,然后使用sort函数排序

    typedef pair<string, int> PAIR;
    struct CmpByValue {
        bool operator()(const PAIR& lhs, const PAIR& rhs) {
            return lhs.second < rhs.second;
        }
    };
    int main() {
        //...
        sort(name_score_vec.begin(), name_score_vec.end(), CmpByValue());
        //...
    }
    

    相关文章

      网友评论

          本文标题:C++ map常用接口

          本文链接:https://www.haomeiwen.com/subject/mnkdbftx.html