轉發列表在STL中實現單鏈表。從C++ 11引入的前向列表比其他容器有用,可以進行插入,刪除和移動操作(例如排序),並允許時間常數地插入和刪除元素。它與列表的不同之處在於前向列表會跟蹤元素list僅保留下一個元素的位置,同時跟蹤下一個和上一個元素。
forward_list::swap()
此函數用於將一個轉發列表的內容與相同類型和大小的另一個轉發列表的內容交換。
用法:
forwardlistname1.swap(forwardlistname2) 參數: The name of the forward lists with which the contents have to be swapped. Result: All the elements of the 2 forward list are swapped.
例子:
Input :myflist1 = {1, 2, 3, 4} myflist2 = {3, 5, 7, 9} myflist1.swap(myflist2); Output:myflist1 = {3, 5, 7, 9} myflist2 = {1, 2, 3, 4} Input :myflist1 = {1, 3, 5, 7} myflist2 = {2, 4, 6, 8} myflist1.swap(myflist2); Output:myflist1 = {2, 4, 6, 8} myflist2 = {1, 3, 5, 7}
錯誤和異常
1.如果轉發列表不是同一類型,則會引發錯誤。
2.如果轉發列表的大小不同,則會引發錯誤。
2.它具有基本的無異常拋出保證。
// CPP program to illustrate
// Implementation of swap() function
#include <forward_list>
#include <iostream>
using namespace std;
int main()
{
// forward list container declaration
forward_list<int> myflist1{ 1, 2, 3, 4 };
forward_list<int> myflist2{ 3, 5, 7, 9 };
// using swap() function to
// swap elements of forward lists
myflist1.swap(myflist2);
// printing the first forward list
cout << "myflist1 = ";
for (auto it = myflist1.begin();
it != myflist1.end(); ++it)
cout << ' ' << *it;
// printing the second forward list
cout << endl
<< "myflist2 = ";
for (auto it = myflist2.begin();
it != myflist2.end(); ++it)
cout << ' ' << *it;
return 0;
}
輸出:
myflist1 = 3 5 7 9 myflist2 = 1 2 3 4
相關用法
注:本文由純淨天空篩選整理自AyushSaxena大神的英文原創作品 forward_list::swap() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。