当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ vector::swap()用法及代码示例


C++ vector::swap() 函数

vector::swap() 是 "vector" 头文件的库函数,用于交换向量的内容,用一个向量调用它并接受另一个向量作为参数并交换它们的内容。 (两个向量的大小可能不同)。

注意:要使用矢量,请包括<vector>标题。

vector::swap() 函数的语法

    vector::swap(vector& v);

参数: v– 与当前向量交换内容的另一个向量。

返回值: void——它什么都不返回。

例:

    Input:
    vector<int> v1{ 10, 20, 30, 40, 50 };
    vector<int> v2{ 100, 200, 300 };
    
    //swapping content of the vectors
    v1.swap(v2);

    Output:
    //if we print the values
    v1:100 200 300
    v2:10 20 30 40 50

C++程序演示vector::swap()函数的例子

//C++ STL program to demonstrate example of
//vector::erase() function

#include <iostream>
#include <vector>
using namespace std;

int main()
{
    //vector declaration
    vector<int> v1{ 10, 20, 30, 40, 50 };
    vector<int> v2{ 100, 200, 300 };

    //printing the sizes and values of the vectors
    cout << "before swap() call..." << endl;
    cout << "size of v1:" << v1.size() << endl;
    cout << "size of v2:" << v2.size() << endl;

    cout << "v1:";
    for (int x:v1)
        cout << x << " ";
    cout << endl;

    cout << "v2:";
    for (int x:v2)
        cout << x << " ";
    cout << endl;

    //swapping the content of the vectors
    v1.swap(v2);

    //printing the sizes and values of the vectors
    cout << "after swap() call..." << endl;
    cout << "size of v1:" << v1.size() << endl;
    cout << "size of v2:" << v2.size() << endl;

    cout << "v1:";
    for (int x:v1)
        cout << x << " ";
    cout << endl;

    cout << "v2:";
    for (int x:v2)
        cout << x << " ";
    cout << endl;

    return 0;
}

输出

before swap() call...
size of v1:5
size of v2:3
v1:10 20 30 40 50
v2:100 200 300
after swap() call...
size of v1:3
size of v2:5
v1:100 200 300
v2:10 20 30 40 50

参考:C++ vector::swap()



相关用法


注:本文由纯净天空筛选整理自 vector::swap() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。