Answers for "combine two vectors c++"

C++
1

c++ vector combine two vectors

vector1.insert(vector1.end(), vector2.begin(), vector2.end());
Posted by: Guest on February-14-2021
0

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
Posted by: Guest on March-27-2021
-1

how to append two vectors in c++

std::vector<int> AB = A;
AB.insert(AB.end(), B.begin(), B.end());
Posted by: Guest on June-16-2020

Browse Popular Code Answers by Language