Unordered_multiset ::bucket_count() es una función integrada en C++ STL que devuelve el número total de cubos en el contenedor unordered_multiset. Un cubo es una ranura en la tabla hash interna del contenedor a la que se asignan elementos en función de su valor hash.
Sintaxis:
unordered_multiset_name.bucket_count()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: Devuelve un tipo integral sin signo que denota el recuento total de cubos.
Los siguientes programas ilustran la función anterior:
Programa 1:
// C++ program to illustrate the // unordered_multiset::bucket_count() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('b'); sample.insert('b'); sample.insert('b'); sample.insert('z'); cout << "The total count of buckets: " << sample.bucket_count(); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "\nBucket " << i << ": "; // if bucket is empty if (sample.bucket_size(i) == 0) cout << "empty"; for (auto it = sample.cbegin(i); it != sample.cend(i); it++) cout << *it << " "; } return 0; }
Producción:
The total count of buckets: 7 Bucket 0: b b b Bucket 1: empty Bucket 2: empty Bucket 3: z Bucket 4: empty Bucket 5: empty Bucket 6: a
Programa 2:
// C++ program to illustrate the // unordered_multiset::bucket_count() function #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multiset<char> sample; // inserts element sample.insert('a'); sample.insert('b'); sample.insert('b'); sample.insert('b'); sample.insert('z'); cout << "The total count of buckets: " << sample.bucket_count(); // prints all element bucket wise for (int i = 0; i < sample.bucket_count(); i++) { cout << "\nBucket " << i << ": "; // if bucket is empty if (sample.bucket_size(i) == 0) cout << "empty"; for (auto it = sample.cbegin(i); it != sample.cend(i); it++) cout << *it << " "; } return 0; }
Producción:
The total count of buckets: 7 Bucket 0: b b b Bucket 1: empty Bucket 2: empty Bucket 3: z Bucket 4: empty Bucket 5: empty Bucket 6: a