📜  C++ STL中的list :: swap()

📅  最后修改于: 2021-05-30 19:33:28             🧑  作者: Mango

列表是C++中用于以非连续方式存储数据的容器。通常,数组和向量本质上是连续的,因此,与列表中的插入和删除选项相比,插入和删除操作的成本更高。

清单:: swap()

此函数用于将一个列表的内容与相同类型和大小的另一个列表交换。

句法 :

listname1.swap(listname2)
Parameters :
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 
#include 
using namespace std;
  
int main()
{
    // list container declaration
    list mylist1{ 1, 2, 3, 4 };
    list 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 
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”