C++ Unordered_set 库 - hash_function


描述

它返回unordered_set容器使用的哈希函数对象。

宣言

以下是 std::unordered_set::hash_function 的声明。

C++11

hasher hash_function() const;

参数

没有任何

返回值

它返回哈希函数。

例外情况

如果任何元素比较对象抛出异常,则抛出异常。

请注意,无效参数会导致未定义的行为。

时间复杂度

恒定时间。

例子

以下示例显示了 std::unordered_set::hash_function 的用法。

#include <iostream>
#include <string>
#include <unordered_set>

typedef std::unordered_set<std::string> stringset;

int main () {
   stringset myset;

   stringset::hasher fn = myset.hash_function();

   std::cout << "that contains: " << fn ("that") << std::endl;
   std::cout << "than contains: " << fn ("than") << std::endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

that: 15843861542616104093
than: 18313131606624605886
无序集.htm