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


C++ deque max_size()用法及代碼示例


deque::max_size()是C++ STL中的內置函數,該函數返回雙端隊列容器可以容納的最大元素數。

用法:

deque_name.max_size()

參數:該函數不接受任何參數。


返回值:該函數返回雙端隊列容器可以容納的最大元素數。

以下示例程序旨在說明上述函數:

示例1:

// CPP program to demonstrate the 
// deque::max_size() function 
// when deque is non-empty 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    deque<int> dq; 
  
    dq.push_back(1); 
    dq.push_back(10); 
    dq.push_back(100); 
    dq.push_back(50); 
    dq.push_back(40); 
    dq.push_back(23); 
    dq.push_back(6); 
  
    cout << "The deque elements: "; 
    for (auto it = dq.begin(); it != dq.end(); it++) 
        cout << *it << " "; 
  
    cout << "\nThe max-size of deque: " << dq.max_size(); 
  
    return 0; 
}
輸出:
The deque elements: 1 10 100 50 40 23 6 
The max-size of deque: 4611686018427387903

示例2:

// CPP program to demonstrate the 
// deque::max_size() function 
// when deque is empty 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    deque<int> dq; 
  
    cout << "The max-size of deque: " << dq.max_size(); 
  
    return 0; 
}
輸出:
The max-size of deque: 4611686018427387903


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 deque max_size() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。