unordered_map::max_size是C++ STL中的内置函数。它返回unordered_map可以容纳的最大元素数。任何容器中元素的最大数量取决于系统和库的实现。句法
size unordered_map.max_size()
参数:它不接受任何参数。
返回类型:一个容器可以容纳最大元素的无符号整数。
例子1
// C++ program to illustrate the
// unordered_map::max_size function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// declaration of unordered_map
unordered_map<int, int> sample;
cout << " Current size is: " << sample.size() << endl;
cout << " max size is:" << sample.max_size() << endl;
// insert elements
sample.insert({ 1, 10 });
sample.insert({ 2, 10 });
sample.insert({ 3, 10 });
sample.insert({ 4, 10 });
cout << " Current size is: " << sample.size() << endl;
cout << " max size is:" << sample.max_size() << endl;
return 0;
}
输出:
Current size is: 0 max size is:1152921504606846975 Current size is: 4 max size is:1152921504606846975
例子2
// C++ program to illustrate the
// unordered_map::max_size function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// declaration of unordered_map
unordered_map<char, int> sample;
cout << " Current size is: " << sample.size() << endl;
cout << " max size is:" << sample.max_size() << endl;
// insert elements
sample.insert({ 'a', 10 });
sample.insert({ 'b', 10 });
sample.insert({ 'c', 10 });
cout << " Current size is: " << sample.size() << endl;
cout << " max size is:" << sample.max_size() << endl;
return 0;
}
输出:
Current size is: 0 max size is:1152921504606846975 Current size is: 3 max size is:1152921504606846975
复杂度:其复杂度是恒定的。
相关用法
注:本文由纯净天空筛选整理自ankit15697大神的英文原创作品 unordered_map max_size in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。