C++ Vector swap()函数
这个函数用于交换两个向量中指定的元素。
语法
假设有两个向量v1和v2。语法如下:
v1.swap(v2);
参数
v2 : v2是一个向量,其值将与另一个向量交换。
返回值
它不返回任何值。
示例1
让我们看一个简单的示例。
#include<iostream>
#include<vector>
using namespace std;
int main()
{
vector<int> v1={1,2,3,4,5};
vector<int> v2={6,7,8,9,10};
cout<<"Before swapping,elements of v1 are :";
for (int i=0;i<v1.size();i++)
cout<<v1[i]<<" ";
cout<<'\n';
cout<<"Before swapping,elements of v2 are :";
for(int i=0;i<v2.size();i++)
cout<<v2[i]<<" ";
cout<<'\n';
v1.swap(v2);
cout<<"After swapping,elements of v1 are :";
for(int i=0;i<v1.size();i++)
cout<<v1[i]<<" ";
cout<<'\n';
cout<<"After swapping,elements of v2 are:";
for(int i=0;i<v2.size();i++)
cout<<v2[i]<<" ";
return 0;
}
输出:
Before swapping,elements of v1 are :1 2 3 4 5
Before swapping,elements of v2 are :6 7 8 9 10
After swapping,elements of v1 are :6 7 8 9 10
After swapping,elements of v2 are :1 2 3 4 5
在这个示例中,swap()函数用于交换向量v1和v2的元素。