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


C++ forward_list insert_after()用法及代码示例


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:参数位置是迭代器类型,它指向要在其后插入参数element 的值的位置。
  • position, n, element:参数位置是迭代器类型,它指向要在其后插入参数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 <forward_list> 
#include <iostream> 
#include <list> 
  
using namespace std; 
  
int main() 
{ 
  
    forward_list<int> fwlist = { 1, 2, 3, 4, 5 }; 
    list<int> 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


相关用法


注:本文由纯净天空筛选整理自harsh.agarwal0大神的英文原创作品 forward_list insert_after() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。