Libreria C ++ Unordered_map - Funzione bucket_count ()
Descrizione
La funzione C ++ std::unordered_map::bucket_count() restituisce il numero di bucket nel contenitore unordered_map.
Dichiarazione
Di seguito è riportata la dichiarazione per l'intestazione std :: unordered_map :: bucket_count () della funzione std :: unordered_map.
C ++ 11
size_type bucket_count() const noexcept;
Parametri
Nessuna
Valore di ritorno
Restituisce il numero totale di bucket presenti in unordered_map.
Eccezioni
Questa funzione membro non genera eccezioni.
Complessità temporale
Costante cioè O (1)
Esempio
L'esempio seguente mostra l'utilizzo della funzione std :: unordered_map :: bucket_count ().
#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}
};
cout << "Number of buckets = " << um.bucket_count() << endl;
return 0;
}
Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:
Number of buckets = 11