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
using namespace std;
int main()
{
multiset 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
using namespace std;
int main()
{
multiset s;
cout << "\nThe max size of multiset: " << s.max_size();
return 0;
}
输出:
The max size of multiset: 461168601842738790
多重设定的所有功能
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。