當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。