how to join two vectors in c++ code example

Example 1: c++ vector combine two vectors

vector1.insert(vector1.end(), vector2.begin(), vector2.end());

Example 2: combine two vectors c++

vector<int> v1 = {1, 2, 3}; 
vector<int> v2 = {4, 5, 6};
copy(v1.begin(), v1.end(),back_inserter(v2)); 
// v2 now contains 4 5 6 1 2 3

Example 3: how to concatenate vectors in c++

vector1.insert( vector1.end(), vector2.begin(), vector2.end() );

Example 4: joining two vectors in c++

// my linkedin : https://www.linkedin.com/in/vaalarivan-prasanna-3a07bb203/
vector<int> AB;
AB.reserve(A.size() + B.size()); // preallocate memory
AB.insert(AB.end(), A.begin(), A.end());
AB.insert(AB.end(), B.begin(), B.end());
//eg : A = {4, 1}, B = {2, 5}
//after the 2 insert operations, AB = {4, 1, 2, 5}

Tags:

Cpp Example