unordered_set::bucket_count()方法是C++ STL中的內置函數,該函數返回unordered_set容器中存在的存儲桶總數。
存儲桶是unordered_set內部哈希表中的一個存儲元素的插槽。
注意:unordered_set中的存儲桶從0到n-1編號,其中n是存儲桶的總數。
用法:
unordered_set_name.bucket_count();
參數:此函數不接受任何參數。
返回值:此函數返回unordered_set容器中存在的存儲桶的當前計數。
以下示例程序旨在說明unordered_set::bucket_count()函數:
// CPP program to illustrate the
// unordered_set::bucket_count() function
#include <iostream>
#include <unordered_set>
using namespace std;
int main()
{
unordered_set<int> sampleSet;
// Inserting elements
sampleSet.insert(5);
sampleSet.insert(10);
sampleSet.insert(15);
sampleSet.insert(20);
sampleSet.insert(25);
cout << "The sampleSet container has " << sampleSet.bucket_count()
<< " number of buckets\n\n";
for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) {
cout << "The Element " << (*itr) << " is present in the bucket: "
<< sampleSet.bucket(*itr);
cout << endl;
}
return 0;
}
輸出:
The sampleSet container has 11 number of buckets The Element 25 is present in the bucket: 3 The Element 5 is present in the bucket: 5 The Element 10 is present in the bucket: 10 The Element 15 is present in the bucket: 4 The Element 20 is present in the bucket: 9
相關用法
- C++ log()用法及代碼示例
- C++ div()用法及代碼示例
- C++ fma()用法及代碼示例
- C++ map key_comp()用法及代碼示例
- C++ wcsncpy()用法及代碼示例
- C++ imag()用法及代碼示例
- C++ real()用法及代碼示例
- C++ valarray end()用法及代碼示例
- C++ regex_iterator()用法及代碼示例
- C++ valarray cos()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 unordered_set bucket_count() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。