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


C++ unordered_multiset max_bucket_count()用法及代码示例


unordered_multiset::max_bucket_count()是C++ STL中的内置函数,该函数返回无序多集容器可以具有的最大存储桶数。这是它可以具有的最大值,尽管由于某些限制而发生冲突,但是它不能超过此最大值。

用法

unordered_multiset_name.max_bucket_count()

参数:该函数不接受任何内容。


返回值:该函数返回可能的最大存储桶数。

以下示例程序旨在说明unordered_multiset::maximum_bucket_count()函数:

程序1

// C++ program to illustrate the 
// unordered_multiset::maximum_bucket_count() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multiset<char> sample; 
  
    // inserts element 
    sample.insert('a'); 
    sample.insert('b'); 
    sample.insert('b'); 
    sample.insert('b'); 
    sample.insert('z'); 
  
    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_multiset::maximum_bucket_count() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multiset<int> sample; 
  
    // inserts element 
    sample.insert(1); 
    sample.insert(2); 
    sample.insert(2); 
    sample.insert(4); 
    sample.insert(4); 
  
    cout << "The maximum bucket count is: " 
                << sample.max_bucket_count(); 
  
    return 0; 
}
输出:
The maximum bucket count is: 1152921504606846975


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 unordered_multiset max_bucket_count() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。