在 C++ 中將向量 vector 追加到另外一個向量 vector

Jinku Hu 2023年1月30日 2020年12月31日
  1. 在 C++ 中使用 insert 函式將向量追加到向量上
  2. 在 C++ 中使用 insert 函式在向量中新增元素
在 C++ 中將向量 vector 追加到另外一個向量 vector

本文將介紹幾種在 C++ 中如何將一個向量 vector 追加到另一個向量 vector 的方法。

在 C++ 中使用 insert 函式將向量追加到向量上

insert 方法是 std::vector 容器的一個內建函式,它可以向 vector 物件新增多個元素。作為第一個例子,我們展示瞭如何將一個給定的範圍從一個 vector 追加到另一個 vector。如果我們指定三個迭代器作為引數,insert 函式將在作為第一個引數傳遞的迭代器之前新增最後兩個引數的範圍中的元素。由於我們在下面的程式碼示例中傳遞了第一個 vector 物件的 end 迭代器,因此該函式本質上是在做兩個向量的追加。

#include <iostream>
#include <vector>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;

template<typename T>
void printVectorElements(vector<T> &vec)
{
    for (auto i = 0; i < vec.size(); ++i) {
        cout << vec.at(i) << "; ";
    }
    cout << endl;
}

int main() {
    vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};
    vector<int> i_vec2 = {121, 321, 431, 531, 231, 651, 841};

    cout << "i_vec1           : ";
    printVectorElements(i_vec1);
    i_vec1.insert(i_vec1.end(), i_vec2.begin(), i_vec2.end());
    cout << "i_vec1 (inserted): ";
    printVectorElements(i_vec1);
    cout << endl;

    return EXIT_SUCCESS;
}

輸出:

i_vec1           : 12; 32; 43; 53; 23; 65; 84;
i_vec1 (inserted): 12; 32; 43; 53; 23; 65; 84; 121; 321; 431; 531; 231; 651; 841;

或者,我們可以使用 std::end/std::begin 方法指定迭代器,實現更通用的向 insert 函式傳遞引數的方式。

#include <iostream>
#include <vector>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;

template<typename T>
void printVectorElements(vector<T> &vec)
{
    for (auto i = 0; i < vec.size(); ++i) {
        cout << vec.at(i) << "; ";
    }
    cout << endl;
}

int main() {
    vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};
    vector<int> i_vec2 = {121, 321, 431, 531, 231, 651, 841};

    cout << "i_vec1           : ";
    printVectorElements(i_vec1);
    i_vec1.insert(std::end(i_vec1), std::begin(i_vec2), std::end(i_vec2));
    cout << "i_vec1 (inserted): ";
    printVectorElements(i_vec1);
    cout << endl;

    return EXIT_SUCCESS;
}

在 C++ 中使用 insert 函式在向量中新增元素

使用 insert 方法的另一種常見方式是向向量新增一系列具有給定值的元素。例如,我們可以在整數向量的前 4 個位置插入 0。注意,第一個引數是元素的位置,在這個位置上新增元素。即使使用 new 呼叫手動分配 vector 元素,也可以使用 insert 方法。

#include <iostream>
#include <vector>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;

template<typename T>
void printVectorElements(vector<T> &vec)
{
    for (auto i = 0; i < vec.size(); ++i) {
        cout << vec.at(i) << "; ";
    }
    cout << endl;
}

int main() {
    vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};

    cout << "i_vec1           : ";
    printVectorElements(i_vec1);
    i_vec1.insert(i_vec1.begin(), 4, 0);
    cout << "i_vec1 (inserted): ";
    printVectorElements(i_vec1);
    cout << endl;

    return EXIT_SUCCESS;
}

輸出:

i_vec1           : 12; 32; 43; 53; 23; 65; 84;
i_vec1 (inserted): 0; 0; 0; 0; 12; 32; 43; 53; 23; 65; 84;

當需要連線兩個字串向量時,也可以使用 insert 方法。下面的例子演示了與整數向量幾乎相同的語法。

#include <iostream>
#include <vector>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;

template<typename T>
void printVectorElements(vector<T> &vec)
{
    for (auto i = 0; i < vec.size(); ++i) {
        cout << vec.at(i) << "; ";
    }
    cout << endl;
}

int main() {
    vector<string> str_vec1 = {"doordash", "dribble",
                              "renode", "xilinx"};
    vector<string> str_vec2 = {"airbus", "sikorsky"};

    str_vec1.insert(str_vec1.end(), str_vec2.begin(), str_vec2.end());
    printVectorElements(str_vec1);
    cout << endl;

    return EXIT_SUCCESS;
}

輸出:

doordash; dribble; renode; xilinx; airbus; sikorsky;
Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn

相關文章 - C++ Vector