forward_list :: splice_after()是CPP STL中的内置函数,该函数将first + 1到last范围内的元素从给定的forward_list传输到另一个forward_list。元素将插入到参数中位置所指向的元素之后。
句法:
forwardlist1_name.splice_after(position iterator, forwardlist2_name,
first iterator, last iterator)
参数:该函数接受四个参数,分别指定如下:
- position –指定forward_list中要插入新元素的位置。
- forwardlist2_name –指定要从中插入元素的列表。
- first –指定要在其后进行插入的迭代器。
- last –指定要进行插入的迭代器。
返回值:该函数没有返回值。
下面的程序演示了以上函数:
程序1:
// C++ program to illustrate
// splice_after() function
#include
using namespace std;
int main()
{
// initialising the forward lists
forward_list list1 = { 10, 20, 30, 40 };
forward_list list2 = { 4, 9 };
// splice_after operation performed
// all elements except the first element in list1 is
// inserted in list 2 between 4 and 9
list2.splice_after(list2.begin(), list1,
list1.begin(), list1.end());
cout << "Elements are: " << endl;
// loop to print the elements of second list
for (auto it = list2.begin(); it != list2.end(); ++it)
cout << *it << " ";
return 0;
}
输出:
Elements are:
4 20 30 40 9
程式2:
// C++ program to illustrate
// splice_after() function
#include
using namespace std;
int main()
{
// initialising the forward lists
forward_list list1 = { 10, 20, 30, 40 };
forward_list list2 = { 4, 9 };
// splice_after operation performed
// all elements of list1 are inserted
// in list2 between 4 and 9
list2.splice_after(list2.begin(), list1,
list1.before_begin(), list1.end());
cout << "Elements are: " << endl;
// loop to print the elements of second list
for (auto it = list2.begin(); it != list2.end(); ++it)
cout << *it << " ";
return 0;
}
输出:
Elements are:
4 10 20 30 40 9
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。