當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。