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 <bits/stdc++.h>
using namespace std;
int main()
{
// declaration of unordered_map
unordered_map<int, int> 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 <bits/stdc++.h>
using namespace std;
int main()
{
// declaration of unordered_map
unordered_map<char, int> 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
複雜度:其複雜度是恒定的。
相關用法
注:本文由純淨天空篩選整理自ankit15697大神的英文原創作品 unordered_map max_bucket_count in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。