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


C++ list emplace()用法及代碼示例


list::emplace(是C++ STL中的內置函數,該函數通過在給定位置插入新元素來擴展列表。

用法:

list_name.emplace(position, element)

參數:該函數接受兩個強製性參數,如下所述:


  • position-它指定迭代器,該迭代器指向列表中要插入新元素的位置。
  • element-它指定要在列表容器中插入的元素。

返回值:它返回一個指向新插入元素的隨機訪問迭代器。

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

程序1:

// C++ program to illustrate the 
// list::emplace() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // declaration of list 
    list<int> lis = { 5, 6, 7, 8, 9, 10 }; 
  
    auto it = lis.emplace(lis.begin(), 2); 
  
    // inserts at the beginning of the list 
    lis.emplace(it, 1); 
  
    cout << "List: "; 
    for (auto it = lis.begin(); it != lis.end(); ++it) 
        cout << *it << " "; 
  
    return 0; 
}
輸出:
List: 1 2 5 6 7 8 9 10

程序2:

// C++ program to illustrate the 
// list::emplace() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // declaration of list 
    list<pair<int, char> > lis; 
  
    // inserts at the beginning of the list 
    auto it = lis.emplace(lis.begin(), 4, 'a'); 
  
    // inserts at the beginning of the list 
    lis.emplace(it, 3, 'b'); 
  
    cout << "List: "; 
  
    for (auto it : lis) 
        cout << "(" << it.first << ", " << it.second << ") "; 
  
    return 0; 
}
輸出:
List: (3, b) (4, a)


相關用法


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