📜  C++ STL中的unordered_map max_size

📅  最后修改于: 2021-05-30 08:11:12             🧑  作者: Mango

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 
using namespace std;
  
int main()
{
  
    // declaration of unordered_map
    unordered_map 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 
using namespace std;
  
int main()
{
  
    // declaration of unordered_map
    unordered_map 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

复杂度:其复杂度是恒定的。

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”