当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。