当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ unordered_map max_bucket_count用法及代码示例


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