當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ unordered_map max_size用法及代碼示例


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。