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


C++ deque emplace用法及代碼示例


雙端隊列或Double-ended隊列是序列容器,兩端都有擴展和收縮函數。它們類似於向量,但是在元素的結尾和開始處插入和刪除時效率更高。與向量不同,可能無法保證連續的存儲分配。

emplace()函數在指定位置之前插入一個新元素,並且容器的大小增加了一個。

用法:



iterator emplace(const_iterator position, value_type val);

參數:此方法接受以下參數:

  • position:它定義了要插入新元素的位置。
  • val:要插入的新值。

返回值:它將迭代器返回到新構造的元素。

以下示例說明了此方法:

示例1:

#include <deque> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
  
    // initialization of deque named sample 
    deque<int> sample = { 2, 3, 4, 5 }; 
  
    // initializing an iterator 
    deque<int>::iterator itr; 
  
    // adding 1 at the first position in 
    // the sample as itr points to 
    // first position in the sample 
    sample.emplace(sample.begin(), 1); 
  
    // Looping the whole 
    for (itr = sample.begin(); itr != sample.end(); ++itr) 
        // sample for printing 
        cout << *itr << " "; 
  
    cout << endl; 
    return 0; 
}
輸出:
1 2 3 4 5

示例2:

#include <deque> 
#include <iostream> 
using namespace std; 
int main() 
{ 
  
    // initialization of deque named sample 
    deque<char> sample = { 'G', 'E', 'K', 'S' }; 
  
    // initialising an iterator 
    deque<char>::iterator itr = sample.begin(); 
  
    // incrementing the iterator by one place 
    ++itr; 
  
    // adding E at the second position in 
    // the sample as itr points to 
    // second position in the sample 
    sample.emplace(itr, 'E'); 
  
    // Looping the whole 
    for (itr = sample.begin(); itr != sample.end(); ++itr) 
  
        // sample for printing 
        cout << *itr; 
  
    cout << endl; 
    return 0; 
}
輸出:
GEEKS



相關用法


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