unordered_set::max_size()是C++ STL中的内置函数,在其中定义,该函数由于系统约束或内部实现而返回unordered_set容器可以容纳的最大元素数量(即unordered_set的最大大小)。
用法:
map_name.max_size()
参数:该函数不接受任何参数。它只是返回容器的最大大小。
返回值:该函数返回unordered_set可以容纳的最大元素数。
异常:此函数不会引发任何异常。
以下示例程序旨在说明C++中的unordered_set::max_size()函数:
// C++ program to illustrate the
// unordered_set::max_size function
#include <iostream>
#include <unordered_set>
using namespace std;
int main()
{
// declaration
unordered_set<int> sample;
// Get the maximum size of the unordered_set
cout << sample.max_size();
return 0;
}
输出
1152921504606846975
时间复杂度:O(1)
相关用法
注:本文由纯净天空筛选整理自tufan_gupta2000大神的英文原创作品 unordered_set max_size() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。