forward_list :: insert_after()是C++ STL中的内置函数,它使我们可以选择在正向列表中给定迭代器指向的元素之后的位置插入元素。此函数中的参数将复制到所需位置。
句法:
forward_list_name.insert_after(iterator position, element)
or,
forward_list_name.insert_after(iterator position, n, element)
or,
forward_list_name.insert_after(iterator position, itr1, itr2)
or,
forward_list_name.insert_after(iterator position, list)
参数:该函数根据上述不同的语法接受不同的参数。让我们详细了解每个参数以及上述语法的工作方式。
- position,element:参数position是迭代器类型,它指向要在其后插入参数element的值的位置。
- position,n,element:参数position是迭代器类型,它指向要在其后插入参数element的值的位置。参数n指定值元素要插入的次数。
- position,itr1,itr2:参数position是迭代器类型,它指向要在其后插入值的位置。迭代器itr1和itr2表示范围[itr1,itr2),并且该范围中的包含itr1且不包含itr2的元素将在迭代器指向给定位置之后插入到前向列表中。
- position,list:参数position是迭代器类型,它指向要在其后插入值的位置。第二个参数列表定义要插入到forward_list中的元素列表。
返回值:该函数返回一个迭代器,该迭代器指向最后插入的元素。
下面的程序说明了上述函数:
// C++ program to illustrate the
// forward_list::insert_after() function
#include
#include
#include
using namespace std;
int main()
{
forward_list fwlist = { 1, 2, 3, 4, 5 };
list sampleList = { 8, 9, 10 };
// This iterator points to the first element
auto it_new = fwlist.begin();
// New element to be inserted
int element = 20;
/******************************/
/** IMPLEMENTING SYNTAX 1 *****/
/******************************/
it_new = fwlist.insert_after(it_new, element);
cout << "After Syntax 1: ";
for (auto it = fwlist.cbegin(); it != fwlist.cend(); it++) {
cout << *it << " ";
}
// it_new points to new element inserted which is 20
// Make it to point to next element
it_new++;
/******************************/
/** IMPLEMENTING SYNTAX 2 *****/
/******************************/
it_new = fwlist.insert_after(it_new, 3, element);
cout << "\n\nAfter Syntax 2: ";
for (auto it = fwlist.cbegin(); it != fwlist.cend(); it++) {
cout << *it << " ";
}
/******************************/
/** IMPLEMENTING SYNTAX 3 *****/
/******************************/
it_new = fwlist.insert_after(it_new, sampleList.begin(),
sampleList.end());
cout << "\n\nAfter Syntax 3: ";
for (auto it = fwlist.cbegin(); it != fwlist.cend(); it++) {
cout << *it << " ";
}
/******************************/
/** IMPLEMENTING SYNTAX 4 *****/
/******************************/
it_new = fwlist.insert_after(it_new, { 50, 60 });
cout << "\n\nAfter Syntax 4: ";
for (auto it = fwlist.cbegin(); it != fwlist.cend(); it++) {
cout << *it << " ";
}
return 0;
}
输出:
After Syntax 1: 1 20 2 3 4 5
After Syntax 2: 1 20 2 20 20 20 3 4 5
After Syntax 3: 1 20 2 20 20 20 8 9 10 3 4 5
After Syntax 4: 1 20 2 20 20 20 8 9 10 50 60 3 4 5
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。