- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 主页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <原子>
- C++ 库 - <复杂>
- C++ 库 - <异常>
- C++ 库 - <功能>
- C++ 库 - <限制>
- C++ 库 - <语言环境>
- C++ 库 - <内存>
- C++ 库 - <新>
- C++ 库 - <数字>
- C++ 库 - <正则表达式>
- C++ 库 - <stdexcept>
- C++ 库 - <字符串>
- C++ 库 - <线程>
- C++ 库 - <元组>
- C++ 库 - <类型信息>
- C++ 库 - <实用程序>
- C++ 库 - <valarray>
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