命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | 容器‎ | 无序集合
 
 
 
 
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 <source_location>
#include <string>
#include <string_view>
#include <unordered_set>
 
using namespace std::literals;
 
namespace logger { bool enabled{false}; }
 
inline void who(const std::source_location sloc = std::source_location::current())
{
    if (logger::enabled)
        std::cout << sloc.function_name() << '\n';
}
 
struct string_hash // C++20's transparent hashing
{
    using hash_type = std::hash<std::string_view>;
    using is_transparent = void;
 
    std::size_t operator()(const char* str) const
    {
        who();
        return hash_type{}(str);
    }
    std::size_t operator()(std::string_view str) const
    {
        who();
        return hash_type{}(str);
    }
    std::size_t operator()(std::string const& str) const
    {
        who();
        return hash_type{}(str);
    }
};
 
int main()
{
    std::unordered_set<int> example{1, 2, -10};
 
    std::cout << "Simple comparison demo:\n" << std::boolalpha;
    if (auto search = example.find(2); search != example.end())
        std::cout << "Found " << *search << '\n';
    else
        std::cout << "Not found\n";
 
    std::unordered_set<std::string, string_hash, std::equal_to<>> set{"one"s, "two"s};
 
    logger::enabled = true;
    std::cout << "Heterogeneous lookup for unordered containers (transparent hashing):\n"
              << (set.find("one")   != set.end()) << '\n'
              << (set.find("one"s)  != set.end()) << '\n'
              << (set.find("one"sv) != set.end()) << '\n';
}

可能的输出

Simple comparison demo:
Found 2
Heterogeneous lookup for unordered containers (transparent hashing):
std::size_t string_hash::operator()(const char*) const
true
std::size_t string_hash::operator()(const std::string&) const
true
std::size_t string_hash::operator()(std::string_view) const
true

[编辑] 另请参见

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