unordered_map :: max_bucket_count是C++ STL中的内置函数。它返回unordered_map容器可以具有的最大存储桶数。
句法
unordered_map.max_bucket_count()
参数:不接受任何参数。
返回类型:返回最大存储桶数。返回类型是一个无符号整数。
示例1:
// C++ program to illustrate the
// unordered_map::max_bucket_count function
#include
using namespace std;
int main()
{
// declaration of unordered_map
unordered_map sample;
cout << "Size is : " << sample.size() << endl;
cout << "Max bucket count is : " << sample.max_bucket_count() << endl;
// insert elements
sample.insert({ 5, 10 });
sample.insert({ 10, 10 });
sample.insert({ 15, 10 });
sample.insert({ 20, 10 });
sample.insert({ 21, 10 });
cout << "Size is : " << sample.size() << endl;
cout << "Max bucket count is : " << sample.max_bucket_count() << endl;
return 0;
}
输出:
Size is : 0
Max bucket count is : 1152921504606846975
Size is : 5
Max bucket count is : 1152921504606846975
示例2:
// C++ program to illustrate the
// unordered_map::max_bucket_count function
#include
using namespace std;
int main()
{
// declaration of unordered_map
unordered_map sample;
cout << "Size is : " << sample.size() << endl;
cout << "Max bucket count is : " << sample.max_bucket_count() << endl;
// insert elements
sample.insert({ 'a', 10 });
sample.insert({ 'b', 10 });
sample.insert({ 'c', 10 });
sample.insert({ 'd', 10 });
sample.insert({ 'e', 10 });
sample.insert({ 'f', 10 });
cout << "Size is : " << sample.size() << endl;
cout << "Max bucket count is : " << sample.max_bucket_count() << endl;
return 0;
}
输出:
Size is : 0
Max bucket count is : 1152921504606846975
Size is : 6
Max bucket count is : 1152921504606846975
复杂度:其复杂度是恒定的。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。