In the case of arrays, there is not much choice to copy an array into another, other than the iterative method i.e running a loop to copy each element at its respective index. But Vector classes have more than one method for copying entire vectors into others in easier ways.
There are basically two types of copying:-
Method 1: Iterative method. This method is a general method to copy, in this method a loop is used to push_back() the old vector elements into the new vector. They are deeply copied
CPP
#include<iostream>
#include<vector>
using namespace std;
int main()
{
vector< int > vect1{1, 2, 3, 4};
vector< int > vect2;
for ( int i=0; i<vect1.size(); i++)
vect2.push_back(vect1[i]);
cout << "Old vector elements are : " ;
for ( int i=0; i<vect1.size(); i++)
cout << vect1[i] << " " ;
cout << endl;
cout << "New vector elements are : " ;
for ( int i=0; i<vect2.size(); i++)
cout << vect2[i] << " " ;
cout<< endl;
vect1[0] = 2;
cout << "The first element of old vector is :" ;
cout << vect1[0] << endl;
cout << "The first element of new vector is :" ;
cout << vect2[0] <<endl;
return 0;
}
|
Output
Old vector elements are : 1 2 3 4
New vector elements are : 1 2 3 4
The first element of old vector is :2
The first element of new vector is :1
In the above code, changing the value at one vector did not alter the value at another vector, hence they are not allocated at the same address, hence deep copy.
Method 2: By assignment “=” operator. Simply assigning the new vector to the old one copies the vector. This way of assignment is not possible in the case of arrays.
CPP
#include<iostream>
#include<vector>
using namespace std;
int main()
{
vector< int > vect1{1, 2, 3, 4};
vector< int > vect2;
vect2 = vect1;
cout << "Old vector elements are : " ;
for ( int i=0; i<vect1.size(); i++)
cout << vect1[i] << " " ;
cout << endl;
cout << "New vector elements are : " ;
for ( int i=0; i<vect2.size(); i++)
cout << vect2[i] << " " ;
cout<< endl;
vect1[0] = 2;
cout << "The first element of old vector is :" ;
cout << vect1[0] << endl;
cout << "The first element of new vector is :" ;
cout << vect2[0] <<endl;
return 0;
}
|
Output
Old vector elements are : 1 2 3 4
New vector elements are : 1 2 3 4
The first element of old vector is :2
The first element of new vector is :1
Method 3: By passing vector as constructor. At the time of declaration of vector, passing an old initialized vector copies the elements of the passed vector into the newly declared vector. They are deeply copied.
CPP
#include<bits/stdc++.h>
using namespace std;
int main()
{
vector< int > vect1{1, 2, 3, 4};
vector< int > vect2(vect1);
cout << "Old vector elements are : " ;
for ( int i=0; i<vect1.size(); i++)
cout << vect1[i] << " " ;
cout << endl;
cout << "New vector elements are : " ;
for ( int i=0; i<vect2.size(); i++)
cout << vect2[i] << " " ;
cout<< endl;
vect1[0] = 2;
cout << "The first element of old vector is :" ;
cout << vect1[0] << endl;
cout << "The first element of new vector is :" ;
cout << vect2[0] <<endl;
return 0;
}
|
Output
Old vector elements are : 1 2 3 4
New vector elements are : 1 2 3 4
The first element of old vector is :2
The first element of new vector is :1
Method 4: copy(first_iterator_o, last_iterator_o, back_inserter()) :- This is another way to copy old vector into new one. This function takes 3 arguments, first, the first iterator of the old vector, second, the last iterator of the old vector and third is back_inserter function to insert values from the back. This also generated a deep copy.
CPP
#include<iostream>
#include<vector> // for vector
#include<algorithm> // for copy() and assign()
#include<iterator> // for back_inserter
using namespace std;
int main()
{
vector< int > vect1{1, 2, 3, 4};
vector< int > vect2;
copy(vect1.begin(), vect1.end(), back_inserter(vect2));
cout << "Old vector elements are : " ;
for ( int i=0; i<vect1.size(); i++)
cout << vect1[i] << " " ;
cout << endl;
cout << "New vector elements are : " ;
for ( int i=0; i<vect2.size(); i++)
cout << vect2[i] << " " ;
cout<< endl;
vect1[0] = 2;
cout << "The first element of old vector is :" ;
cout << vect1[0] << endl;
cout << "The first element of new vector is :" ;
cout << vect2[0] <<endl;
return 0;
}
|
Output
Old vector elements are : 1 2 3 4
New vector elements are : 1 2 3 4
The first element of old vector is :2
The first element of new vector is :1
Method 5: assign(first_iterator_o, last_iterator_o):
This method assigns the same values to the new vector as the old one. This takes 2 arguments, the first iterator to the old vector and the last iterator to the old vector. This generates a deep copy.
CPP
#include<iostream>
#include<vector> // for vector
#include<algorithm> // for copy() and assign()
#include<iterator> // for back_inserter
using namespace std;
int main()
{
vector< int > vect1{1, 2, 3, 4};
vector< int > vect2;
vect2.assign(vect1.begin(), vect1.end());
cout << "Old vector elements are : " ;
for ( int i=0; i<vect1.size(); i++)
cout << vect1[i] << " " ;
cout << endl;
cout << "New vector elements are : " ;
for ( int i=0; i<vect2.size(); i++)
cout << vect2[i] << " " ;
cout<< endl;
vect1[0] = 2;
cout << "The first element of old vector is :" ;
cout << vect1[0] << endl;
cout << "The first element of new vector is :" ;
cout << vect2[0] <<endl;
return 0;
}
|
Output
Old vector elements are : 1 2 3 4
New vector elements are : 1 2 3 4
The first element of old vector is :2
The first element of new vector is :1
Method 6: By using insert function. The vector class has a standard function, insert(), that can insert elements from a specified range.
C++
#include<iostream>
#include<vector> // for vector
using namespace std;
int main()
{
vector< int > vect1{1, 2, 3, 4};
vector< int > vect2;
vect2.insert(vect2.begin(), vect1.begin(), vect1.end());
cout << "Old vector elements are : " ;
for ( int i=0; i<vect1.size(); i++)
cout << vect1[i] << " " ;
cout << endl;
cout << "New vector elements are : " ;
for ( int i=0; i<vect2.size(); i++)
cout << vect2[i] << " " ;
cout<< endl;
vect1[0] = 2;
cout << "The first element of old vector is :" ;
cout << vect1[0] << endl;
cout << "The first element of new vector is :" ;
cout << vect2[0] <<endl;
return 0;
}
|
Output
Old vector elements are : 1 2 3 4
New vector elements are : 1 2 3 4
The first element of old vector is :2
The first element of new vector is :1
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. Please write comments if you find anything incorrect, or if you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
13 Jul, 2023
Like Article
Save Article