unordered_multimap :: max_bucket_count()是C++ STL中的内置函数,它返回无序多图容器可以具有的最大存储桶数。这是它可以具有的最大值,尽管由于某些限制而发生冲突,但是它不能超过此最大值。
语法:
unordered_multimap_name.max_bucket_count()
参数:该函数不接受任何内容。
返回值:该函数返回可能的最大存储桶数。
下面的程序说明了unordered_multimap :: maximum_bucket_count()函数:
程序1 :
// C++ program to illustrate the
// unordered_multimap::max_bucket_count()
#include
#include
using namespace std;
int main()
{
// declaration
unordered_multimap sample;
// inserts key and element
sample.insert({ 'a', 'b' });
sample.insert({ 'a', 'b' });
sample.insert({ 'a', 'd' });
sample.insert({ 'b', 'e' });
sample.insert({ 'b', 'd' });
cout << "The maximum bucket count is: "
<< sample.max_bucket_count();
return 0;
}
输出:
The maximum bucket count is: 1152921504606846975
程序2 :
// C++ program to illustrate the
// unordered_multimap::max_bucket_count()
#include
#include
using namespace std;
int main()
{
// declaration
unordered_multimap sample;
// inserts key and element
sample.insert({ 1, 2 });
sample.insert({ 1, 3 });
sample.insert({ 2, 4 });
sample.insert({ 5, 8 });
sample.insert({ 7, 10 });
cout << "The maximum bucket count is: "
<< sample.max_bucket_count();
return 0;
}
输出:
The maximum bucket count is: 1152921504606846975
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。