Libreria C ++ Bitset - Funzione hash ()

Descrizione

La funzione C ++ std::bitset::hash()restituisce il valore hash in base al set di bit fornito. Restituisce sempre lo stesso valore hash per lo stesso set di bit.

Dichiarazione

Di seguito è riportata la dichiarazione per la funzione std :: bitset :: hash () nel modulo std :: bitset header.

C ++ 11

template <class T> struct hash;
template <size_t N> struct hash<bitset<N>>;

Valore di ritorno

Calcola e restituisce un valore hash basato su bitset.

Esempio

#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;
}

Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:

Hash function for b1 = 4334672815104069193
Hash function for b2 = 4228082005917330485