C++ Deque swap()函数

C++ Deque swap()函数

C++ Deque swap()函数用于交换给定deque和作为参数传递的相同类型的deque的内容。

条件:

  • deque的类型不能不同。
  • deque的大小可以不同。

语法

void swap(deque& second);

参数

second :它是另一个要与给定的deque交换内容的deque容器。

返回值

它不返回任何值。

示例1

让我们看一个简单的示例。

#include <iostream>
#include<deque>
using namespace std;
int main()
{
    deque<string> str={"C is a programming language"};
    deque<string> str1={"java is a programming language"};

    str.swap(str1);
    deque<string>::iterator itr=str.begin();
     deque<string>::iterator itr1=str1.begin();
    cout<<"After swapping,value of str is: "<<*itr;
    cout<<'\n';
     cout<<"After swapping,value of str1 is: "<<*itr1;
    return 0;
 }

输出:

After swapping,value of str is: java is a programming language
After swapping,value of str1 is: C is a programming language

在这个示例中,swap()函数交换了str和str1的内容。现在,str包含”java is a programming language”,而str1包含”C is a programming language”。

示例2

让我们看一个简单的示例,当两个deque的类型不同时。

#include <iostream>
#include<deque>
using namespace std;
int main()
{
    deque<char> c={'m','a','n','g','o'};
    deque<int> s={1 ,2,3,4,5};
    c.swap(s);
    return 0;
   }

输出:

error: no matching function for call to 'std::deque<char>::swap(std::deque<int>&)

在这个示例中,swap()函数因为双端队列的类型不同而抛出错误。

示例3

让我们看一个简单的示例,当大小不同时。

#include <iostream>
#include<deque>
using namespace std;
int main()
{
    deque<int> first={1,2,3,4};
    deque<int> second={10,20,30,40,50};
    deque<int>::iterator itr;
    first.swap(second);
    cout<<"Content of first deque:";
    for(itr=first.begin();itr!=first.end();++itr)
    cout<<*itr<<" ";
    cout<<'\n';
    cout<<"Content of second deque:";
     for(itr=second.begin();itr!=second.end();++itr)
    cout<<*itr<<" ";
    return 0;
    }

输出:

Content of first deque:10 20 30 40 50 
Content of second deque:1 2 3 4

在这个示例中,swap()函数将第一个双端队列的内容与第二个双端队列进行交换。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程