描述
C++ 函数std::bitset::hash()根据提供的位集返回哈希值。它总是为相同的位集返回相同的哈希值。
声明
以下是 std::bitset::hash() 函数形式 std::bitset 标头的声明。
C++11
template <class T> struct hash;
template <size_t N> struct hash<bitset<N>>;
返回值
根据位集计算并返回一个哈希值。
示例
#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
相关用法
- C++ Bitset reference()用法及代码示例
- C++ Bitset reset()用法及代码示例
- C++ Bitset to_string()用法及代码示例
- C++ Bitset bitset()用法及代码示例
- C++ Bitset test()用法及代码示例
- C++ Bitset to_ulong()用法及代码示例
- C++ Bitset all()用法及代码示例
- C++ Bitset set()用法及代码示例
- C++ Bitset any()用法及代码示例
- C++ Bitset none()用法及代码示例
- C++ Bitset to_ullong()用法及代码示例
- C++ Bitset flip()用法及代码示例
- C++ Bitset count()用法及代码示例
- C++ Boost.Lexical_Cast用法及代码示例
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ Unordered_multimap reserve()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Bitset Library - hash() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。