我是靠谱客的博主 精明水池,最近开发中收集的这篇文章主要介绍stl swap函数_vector :: swap()函数以及C ++ STL中的示例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

stl swap函数

C ++ vector :: swap()函数 (C++ vector::swap() function)

vector::swap() is a library function of "vector" header, it is used to swap the content of the vectors, it is called with a vector and accepts another vector as an argument and swaps their content. (Sizes of both of the vectors may differ).

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

Note: To use vector, include <vector> header.

注意:要使用向量,请包含<vector>标头。

Syntax of vector::swap() function

vector :: swap()函数的语法

    vector::swap(vector& v);

Parameter(s): v – It is another vector to be swapped content with current vector.

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

Return value: void – It returns nothing.

返回值: void –不返回任何内容。

Example:

例:

    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++ program to demonstrate example of vector::swap() function)

//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;
}

Output

输出量

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

Reference: C++ vector::swap()

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

翻译自: https://www.includehelp.com/stl/vector-swap-function-with-example.aspx

stl swap函数

最后

以上就是精明水池为你收集整理的stl swap函数_vector :: swap()函数以及C ++ STL中的示例的全部内容,希望文章能够帮你解决stl swap函数_vector :: swap()函数以及C ++ STL中的示例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部