命名空间
变体
操作

std::unordered_map<Key,T,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())迭代器。

[编辑] 复杂度

平均恒定,最坏情况下线性于容器的大小。

注释

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

[编辑] 示例

#include <cstddef>
#include <functional>
#include <iostream>
#include <string>
#include <string_view>
#include <unordered_map>
 
using namespace std::literals;
 
struct string_hash
{
    using hash_type = std::hash<std::string_view>;
    using is_transparent = void;
 
    std::size_t operator()(const char* str) const        { return hash_type{}(str); }
    std::size_t operator()(std::string_view str) const   { return hash_type{}(str); }
    std::size_t operator()(std::string const& str) const { return hash_type{}(str); }
};
 
int main()
{
    // simple comparison demo
    std::unordered_map<int, char> example{{1, 'a'}, {2, 'b'}};
 
    if (auto search = example.find(2); search != example.end())
        std::cout << "Found " << search->first << ' ' << search->second << '\n';
    else
        std::cout << "Not found\n";
 
    // C++20 demo: Heterogeneous lookup for unordered containers (transparent hashing)
    std::unordered_map<std::string, size_t, string_hash, std::equal_to<>> map{{"one"s, 1}};
    std::cout << std::boolalpha
        << (map.find("one")   != map.end()) << '\n'
        << (map.find("one"s)  != map.end()) << '\n'
        << (map.find("one"sv) != map.end()) << '\n';
}

输出

Found 2 b
true
true
true

[编辑] 另请参阅

使用边界检查访问指定元素
(公共成员函数) [编辑]
访问或插入指定元素
(公共成员函数) [编辑]
返回与特定键匹配的元素数量
(公共成员函数) [编辑]
返回与特定键匹配的元素范围
(公共成员函数) [编辑]