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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。