Computer >> Máy Tính >  >> Lập trình >> C ++

multiset max_size () trong C ++ STL với các ví dụ

Trong hướng dẫn này, chúng ta sẽ thảo luận về một chương trình để hiểu multiset max_size () trong C ++ STL.

Hàm max_size () trả về số phần tử tối đa mà một vùng chứa nhất định có thể chứa.

Ví dụ

#include <bits/stdc++.h>
using namespace std;
int main(){
   multiset<int> s;
   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;
}

Đầu ra

The multiset elements are: 10 13 13 24 25
The max size of multiset: 461168601842738790