unordered_set 中count用法

Posted miao-xixixi

tags:

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

举例如下:

#include<cstdio>
#include<iostream>
#include<unordered_set> 
using namespace std;
main(){
    unordered_set<int> us;
    us.insert(1);
    us.insert(2);
    us.insert(3);
    cout<<us.count(6)<<endl;
    return 0;
}

count函数只会返回1,0

对于count(x)

若us中存在x,返回1,反之,返回0

以上是关于unordered_set 中count用法的主要内容,如果未能解决你的问题,请参考以下文章

python中count的用法

unordered_map和unordered_set的模拟实现

在 c++ 中使用 unordered_set/map 时如何制作封装良好的类?

STL详解(十三)—— 用一个哈希表同时封装出unordered_map和unordered_set

MySQL中count的用法

g++5 中 std::unordered_set 编译错误的不完整类型,在 clang++ 中编译