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)
相關用法
- C++ unordered_multiset emplace()用法及代碼示例
- C++ vector emplace()用法及代碼示例
- C++ unordered_multimap emplace()用法及代碼示例
- C++ unordered_set emplace()用法及代碼示例
- C++ map emplace()用法及代碼示例
- C++ set::emplace()用法及代碼示例
- C++ priority_queue emplace()用法及代碼示例
- C++ queue::emplace()用法及代碼示例
- C++ deque emplace用法及代碼示例
- C++ unordered_map emplace()用法及代碼示例
- C++ multimap::emplace()用法及代碼示例
- C++ multiset::emplace()用法及代碼示例
- C++ stack emplace()用法及代碼示例
注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 list emplace() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。