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


C++ list::swap()用法及代碼示例



清單是C++中用於以非連續方式存儲數據的容器,通常,數組和向量本質上是連續的,因此,與列表中的插入和刪除選項相比,插入和刪除操作的成本更高。

list::swap()

此函數用於將一個列表的內容與相同類型和大小的另一個列表交換。

用法:


listname1.swap(listname2)
參數:
The name of the lists with which
the contents have to be swapped.
Result:
All the elements of the 2 list are swapped.

例子:

Input :mylist1 = {1, 2, 3, 4}
         mylist2 = {3, 5, 7, 9}
         mylist1.swap(mylist2);
Output:mylist1 = {3, 5, 7, 9}
         mylist2 = {1, 2, 3, 4}

Input :mylist1 = {1, 3, 5, 7}
         mylist2 = {2, 4, 6, 8}
         mylist1.swap(mylist2);
Output:mylist1 = {2, 4, 6, 8}
         mylist2 = {1, 3, 5, 7}

錯誤和異常

1.如果列表不是同一類型,則會引發錯誤。
2.如果列表的大小不同,則會引發錯誤。
2.它具有基本的無異常拋出保證。

// CPP program to illustrate 
// Implementation of swap() function 
#include <iostream> 
#include <list> 
using namespace std; 
  
int main() 
{ 
    // list container declaration 
    list<int> mylist1{ 1, 2, 3, 4 }; 
    list<int> mylist2{ 3, 5, 7, 9 }; 
  
    // using swap() function to  
    //swap elements of lists 
    mylist1.swap(mylist2); 
  
    // printing the first list 
    cout << "mylist1 = "; 
    for (auto it = mylist1.begin(); 
              it != mylist1.end(); ++it) 
        cout << ' ' << *it; 
  
    // printing the second list 
    cout << endl 
        << "mylist2 = "; 
    for (auto it = mylist2.begin(); 
              it != mylist2.end(); ++it) 
        cout << ' ' << *it; 
    return 0; 
}

輸出:

mylist1 = 3 5 7 9 
mylist2 = 1 2 3 4 


相關用法


注:本文由純淨天空篩選整理自AyushSaxena大神的英文原創作品 list::swap() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。