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


C++ multiset max_size()用法及代碼示例


multiset::max_size()是C++ STL中的內置函數,該函數返回多集容器可以容納的最大元素數。

用法:

multiset_name.max_size()

參數:該函數不接受任何參數。


返回值:該函數返回一個多集容器可以容納的最大元素數。

以下示例程序旨在說明上述函數:

程序1:

// CPP program to demonstrate the 
// multiset::max_size() function 
// when multiset is non-empty 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
  
    multiset<int> s; 
  
    // Function to insert elements 
    // in the multiset container 
    s.insert(10); 
    s.insert(13); 
    s.insert(13); 
    s.insert(25); 
    s.insert(24); 
  
    cout << "The multiset elements are:"; 
    for (auto it = s.begin(); it != s.end(); it++) 
        cout << *it << " "; 
  
    cout << "\nThe max size of multiset:" << s.max_size(); 
    return 0; 
}
輸出:
The multiset elements are:10 13 13 24 25 
The max size of multiset:461168601842738790

程序2:

// CPP program to demonstrate the 
// multiset::max_size() function 
// when multiset is empty 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
  
    multiset<int> s; 
  
    cout << "\nThe max size of multiset:" << s.max_size(); 
    return 0; 
}
輸出:
The max size of multiset:461168601842738790

多重設定的所有函數



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 multiset max_size() in C++ STL with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。