Libreria C ++ Unordered_map - Funzione bucket ()
Descrizione
La funzione C ++ std::unordered_map::bucket()restituisce il numero di bucket in cui si trova l'elemento con la chiave k .
Bucket è uno spazio di memoria nella tabella hash del contenitore a cui vengono assegnati gli elementi in base al valore hash della loro chiave. L'intervallo di bucket valido è compreso tra 0 e bucket_count - 1 .
Dichiarazione
Di seguito è riportata la dichiarazione per la funzione std :: unordered_map :: bucket () nell'intestazione std :: unordered_map.
C ++ 11
size_type bucket(const key_type& k) const;
Parametri
k - Chiave il cui bucket deve essere individuato.
Valore di ritorno
Restituisce il numero d'ordine del bucket corrispondente alla chiave k .
Complessità temporale
Costante cioè O (1)
Esempio
L'esempio seguente mostra l'utilizzo della funzione std :: unordered_map :: bucket ().
#include <iostream>
#include <unordered_map>
using namespace std;
int main(void) {
unordered_map<char, int> um = {
{'a', 1},
{'b', 2},
{'c', 3},
{'d', 4},
{'e', 5}
};
for (auto it = um.begin(); it != um.end(); ++it) {
cout << "Element " << "[" << it->first << " : "
<< it->second << "] " << "is in "
<< um.bucket(it->first) << " bucket." << endl;
}
return 0;
}
Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:
Element [e : 5] is in 3 bucket.
Element [d : 4] is in 2 bucket.
Element [c : 3] is in 1 bucket.
Element [b : 2] is in 0 bucket.
Element [a : 1] is in 6 bucket.