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