命名空间
变体
操作

std::flat_set<Key,Compare,KeyContainer>::contains

来自 cppreference.com
< cpp‎ | 容器‎ | 扁平集合
 
 
 
 
bool contains( const Key& key ) const;
(1) (自 C++23 起)
template< class K >
bool contains( const K& x ) const;
(2) (自 C++23 起)
1) 检查容器中是否存在键与 key 等效的元素。
2) 检查是否存在键与值 x 进行等效比较的元素。只有在限定标识符 Compare::is_transparent 有效且表示一个类型时,此重载才参与重载解析。它允许在不构造 Key 实例的情况下调用此函数。

内容

[编辑] 参数

key - 要搜索的元素的键值
x - 任何可以与键进行透明比较的值类型

[编辑] 返回值

如果存在此元素,则为 true,否则为 false

[编辑] 复杂度

容器大小的对数。

[编辑] 示例

#include <iostream>
#include <flat_set>
 
int main()
{
    std::flat_set<int> example{1, 2, 3, 4};
 
    for (int x : {2, 5})
        if (example.contains(x))
            std::cout << x << ": Found\n";
        else
            std::cout << x << ": Not found\n";
}

输出

2: Found
5: Not found

[编辑] 参见

查找具有特定键的元素
(公有成员函数) [编辑]
返回与特定键匹配的元素数量
(公有成员函数) [编辑]
返回与特定键匹配的元素范围
(公有成员函数) [编辑]