std::hash<Key>::operator()
来自 cppreference.com
的专门化 std::hash 应定义一个 operator()
它
- 接收一个类型为
Key
的参数 key. - 返回一个类型为 std::size_t 的值,该值表示 key 的哈希值。
- 对于两个相等的参数
k1
和k2
,std::hash<Key>()(k1) == std::hash<Key>()(k2). - 对于两个不同的参数
k1
和k2
,它们不相等,std::hash<Key>()(k1) == std::hash<Key>()(k2) 的概率应该非常小,接近于 1.0 / std::numeric_limits<size_t>::max().
内容 |
[编辑] 参数
key | - | 要进行散列的对象 |
[编辑] 返回值
一个 std::size_t 表示哈希值。
[编辑] 异常
散列函数不应抛出异常。
[编辑] 示例
以下代码展示了如何为自定义类专门化 std::hash 模板。散列函数使用 Fowler–Noll–Vo 散列算法。
运行此代码
#include <cstdint> #include <functional> #include <iostream> #include <string> struct Employee { std::string name; std::uint64_t ID; }; namespace std { template <> class hash<Employee> { public: std::uint64_t operator()(const Employee& employee) const { // computes the hash of an employee using a variant // of the Fowler-Noll-Vo hash function constexpr std::uint64_t prime{0x100000001B3}; std::uint64_t result{0xcbf29ce484222325}; for (std::uint64_t i{}, ie = employee.name.size(); i != ie; ++i) result = (result * prime) ^ employee.name[i]; return result ^ (employee.ID << 1); } }; } int main() { Employee employee; employee.name = "Zaphod Beeblebrox"; employee.ID = 42; std::hash<Employee> hash_fn; std::cout << hash_fn(employee) << '\n'; }
输出
12615575401975788567