C++ forward_list::emplace_after() 函数



C++ 的std::forward_list::emplace_after()函数用于在forward_list容器中指定位置之后插入(或附加)一个新元素。

它返回一个指向新插入元素的迭代器,并将forward_list的大小增加一。在C++中,迭代器是一个可以遍历STL(标准模板库)容器中的元素并访问单个元素的对象。

我们可以使用emplace_after()函数以及for循环在forward_list容器中指定位置之后动态插入元素。

语法

以下是C++ std::forward_list::emplace_after()函数的语法:

iterator emplace_after (val, pos);

参数

  • val - 要插入到forward_list中的新元素的值。
  • position - forward_list中新元素要插入到的位置。

Explore our latest online courses and learn new skills at your own pace. Enroll and become a certified expert to boost your career.

返回值

此函数返回一个指向新插入元素的迭代器。

示例1

在开头位置之后插入一个元素。

在下面的程序中,我们使用C++ std::forward_list::emplace_after()函数在当前forward_list {10, 30, 40, 50}的开头位置之后插入一个新的指定元素20。

Open Compiler
#include<iostream> #include<forward_list> using namespace std; int main() { //create a forward_list forward_list<int> num_list = {10, 30, 40, 50}; cout<<"The num_list contents before the emplace_after operation: "<<endl; for(int n : num_list){ cout<<n<<endl; } //value of element and pos int val = 20; auto pos = num_list.begin(); //using the emplace_after() function num_list.emplace_after(pos, val); cout<<"The num_list contents after the emplace_after operation: "<<endl; for(int n : num_list){ cout<<n<<endl; } }

输出

以下是上述程序的输出:

The num_list contents before the emplace_after operation: 
10
30
40
50
The num_list contents after the emplace_after operation: 
10
20
30
40
50

示例2

如果forward_list是字符类型,则此函数会在指定位置之后插入新的指定元素。

以下是C++ std::forward_list::emplace_after()函数的另一个示例。在这里,我们创建一个名为char_list的forward_list(字符类型),其内容为{'B', 'C', 'D', 'E', 'F'}。然后,使用emplace_after()函数,我们尝试在此forward_list的指定位置之后插入一个新的指定元素'A'。

Open Compiler
#include<iostream> #include<forward_list> using namespace std; int main() { //create a forward_list forward_list<char> char_list = {'B', 'C', 'D', 'E', 'F'}; cout<<"The char_list contents before the emplace_after operation: "<<endl; for(char c : char_list){ cout<<c<<endl; } //value of element and pos char val = 'A'; auto pos = char_list.before_begin(); //using the emplace_after() function char_list.emplace_after(pos, val); cout<<"The char_list contents after the emplace_after operation: "<<endl; for(char c : char_list){ cout<<c<<endl; } }

输出

这将生成以下输出:

The char_list contents before the emplace_after operation: 
B
C
D
E
F
The char_list contents after the emplace_after operation: 
A
B
C
D
E
F

示例3

除了int类型和char类型元素外,我们还可以将字符串类型元素插入到指定位置之后。

在这个例子中,我们创建一个名为names的forward_list(字符串类型),其内容为{"Aman", "Abhishek", "Ganesh", "Mohit"}。然后,使用emplace_after()函数,我们尝试在当前forward_list的开头位置之后插入一个新的指定元素"Raju"。

Open Compiler
#include<iostream> #include<forward_list> using namespace std; int main() { //create a forward_list forward_list<string> names = {"Aman", "Abhishek", "Ganesh", "Mohit"}; cout<<"The names forward_list contents before the emplace_after operation: "<<endl; for(string s: names){ cout<<s<<endl; } //value of element and pos string val = "Raju"; auto pos = names.begin(); //using the emplace_after() function names.emplace_after(pos, val); cout<<"The names forward_list contents after the emplace_after operation: "<<endl; for(string s : names){ cout<<s<<endl; } }

输出

上述程序产生以下输出:

The names forward_list contents before the emplace_after operation: 
Aman
Abhishek
Ganesh
Mohit
The names forward_list contents after the emplace_after operation: 
Aman
Raju
Abhishek
Ganesh
Mohit

示例4

使用emplace_after()函数以及for循环在当前forward_list的指定位置之后动态插入元素。

Open Compiler
#include<iostream> #include<forward_list> using namespace std; int main() { //create a forward_list forward_list<int> num_list = {1}; cout<<"The size of the num_list before the emplace_after operation: "<<endl; int size = distance(num_list.begin(), num_list.end()); cout<<size<<endl; //pos auto pos = num_list.begin(); for(int i = 10; i>1; i--){ num_list.emplace_after(pos, i); } cout<<"The num_list contents after the emplace_after operation: "<<endl; for(int n : num_list){ cout<<n<<endl; } }

输出

让我们编译并运行上述程序,这将产生以下结果:

The size of the num_list before the emplace_after operation: 
1
The num_list contents after the emplace_after operation: 
1
2
3
4
5
6
7
8
9
10
广告