命名空间
变体
操作

std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::find

来自 cppreference.com
 
 
 
 
iterator find( const Key& key );
(1) (自 C++11)
const_iterator find( const Key& key ) const;
(2) (自 C++11)
template< class K >
iterator find( const K& x );
(3) (自 C++20)
template< class K >
const_iterator find( const K& x ) const;
(4) (自 C++20)
1,2) 查找具有与 key 等效的键的元素。如果容器中有多个具有请求键的元素,则可以返回其中任何一个。
3,4) 查找键与值 x 比较等效的元素。此重载仅当 Hash::is_transparentKeyEqual::is_transparent 有效并且每个都表示一个类型时才参与重载解析。这假设这样的 Hash 可以用 KKey 类型调用,并且 KeyEqual 是透明的,这共同允许调用此函数而不构造 Key 的实例。

内容

[编辑] 参数

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

[编辑] 返回值

指向请求元素的迭代器。如果未找到此类元素,则返回越界(请参阅 end())迭代器。

[编辑] 复杂度

平均情况下为常数,最坏情况下为容器大小的线性。

备注

特性测试 Std 特性
__cpp_lib_generic_unordered_lookup 201811L (C++20) 无序关联容器 中的异构比较查找;重载 (3,4)

[编辑] 示例

#include <iostream>
#include <unordered_set>
 
int main()
{
    // Simple comparison demo.
    std::unordered_multiset<int> example{1, 2, 3, 4};
 
    if (auto search = example.find(2); search != example.end())
        std::cout << "Found " << (*search) << '\n';
    else
        std::cout << "Not found\n";
}

输出

Found 2

[编辑] 另请参阅

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