C++ Bitset 库 - hash() 函数
描述
C++ 函数 std::bitset::hash() 根据提供的 bitset 返回哈希值。 它总是为相同的位集返回相同的哈希值。
声明
以下是 std::bitset::hash() 函数形式 std::bitset 头的声明。
C++11
template <class T> struct hash; template <size_t N> struct hash<bitset<N>>;
返回值
根据 bitset 计算并返回一个哈希值。
示例
#include <iostream> #include <bitset> using namespace std; int main(void) { bitset<4> b1(1); bitset<4> b2(4); std::hash<std::bitset<4>> hash_fun; cout << "Hash function for b1 = " << hash_fun(b1) << endl; cout << "Hash function for b2 = " << hash_fun(b2) << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
Hash function for b1 = 4334672815104069193 Hash function for b2 = 4228082005917330485