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


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


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 <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialising the forward lists 
    forward_list<int> list1 = { 10, 20, 30, 40 }; 
    forward_list<int> 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 <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialising the forward lists 
    forward_list<int> list1 = { 10, 20, 30, 40 }; 
    forward_list<int> 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


相关用法


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