How to copy elements of an Array in a Vector in C++
Last Updated :
27 Jan, 2022
An Array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together.
Vectors are the same as dynamic arrays with the ability to resize themselves automatically when an element is inserted or deleted, with their storage being handled automatically by the container.
Following are the different ways to copy elements from an array to a vector:
Method 1: Naive Solution
Traverse the complete array and insert each element into the newly assigned vector using the push_back() function. Below is the implementation of the above approach:
C++
// C++ program of the above approach
#include <bits/stdc++.h>
using namespace std;
// Driver code
int main()
{
// Initialise an array
int arr[] = { 1, 2, 3, 4, 5 };
int N = sizeof(arr) / sizeof(arr[0]);
// Initialize an empty vector
vector<int> v;
// Traverse the array and
for (int i = 0; i < N; i++)
v.push_back(arr[i]);
// Print all elements of vector
for (auto ele : v) {
cout << ele << " ";
}
return 0;
}
Method 2: Range-based Assignment during Initialization
In C++, the Vector class provides a constructor which accepts a range, so to create a vector from array elements, pass the pointer to the first and last position of the range as the argument during the vector initialization that needs to be copied to the vector i.e, (arr, arr+N).
Below is the implementation of the above approach:
C++
// C++ program of the above approach
#include <bits/stdc++.h>
using namespace std;
// Driver code
int main()
{
// Initialise an array
int arr[] = { 1, 2, 3, 4, 5 };
int N = sizeof(arr) / sizeof(arr[0]);
// Initialize a vector by passing the
// pointer to the first and last element
// of the range as arguments
vector<int> v(arr, arr + N);
// Print all elements of vector
for (auto ele : v) {
cout << ele << " ";
}
return 0;
}
Note that Iterators used to point at the memory addresses of STL containers can also be used.
- std::begin(arr)- Iterator to the first element of an array.
- std::end(arr)- Iterator to the one after the last element of an array.
vector<int> v(begin(arr), end(arr));
Method 3: Using Inbuilt Function Insert(position, first_iterator, last_iterator): The insert() is a built-in function in C++ STL that inserts new elements before the element at the specified position, effectively increasing the container size by the number of elements inserted. Instead of a single value, a range can also be passed as arguments.
Below is the implementation of the above approach:
C++
// C++ program of the above approach
#include <bits/stdc++.h>
using namespace std;
// Driver code
int main()
{
// Initialise an array
int arr[] = { 1, 2, 3, 4, 5 };
int N = sizeof(arr) / sizeof(arr[0]);
// Initialize an empty vector
vector<int> v;
// Add array elements in the required
// range into a vector from beginning
v.insert(v.begin(), arr, arr + N);
// Print all elements of vector
for (auto ele : v) {
cout << ele << " ";
}
return 0;
}
Method 4: Using Inbuilt Function Copy(first_iterator, last_iterator, back_inserter()): This is another way to copy array elements into a vector is to use the inbuilt copy function. This function takes 3 arguments, an iterator to the first element of the array, an iterator to the last element of the array, and the back_inserter function to insert values from the back.
Below is the implementation of the above approach:
C++
// C++ program of the above approach
#include <bits/stdc++.h>
using namespace std;
// Driver code
int main()
{
// Initialise an array
int arr[] = { 1, 2, 3, 4, 5 };
int N = sizeof(arr) / sizeof(arr[0]);
// Initialize an empty vector
vector<int> v;
// Copy array elements in the required
// range into vector v using copy function
copy(begin(arr), end(arr), back_inserter(v));
// Print all elements of vector
for (auto ele : v) {
cout << ele << " ";
}
return 0;
}
Method 5: Using Inbuilt Function Assign( first_iterator, last_iterator ): The vector::assign() function can be used to assign values to a new vector or an already existing vector. It can also modify the size of the vector if necessary. It takes the iterator to the first and last position as arguments.
Below is the implementation of the above approach:
C++
// C++ program of the above approach
#include <bits/stdc++.h>
using namespace std;
// Driver code
int main()
{
// Initialise an array
int arr[] = { 1, 2, 3, 4, 5 };
int N = sizeof(arr) / sizeof(arr[0]);
// Initialize an empty vector
vector<int> v;
// Assign the elements of the array
// into the vector v
v.assign(arr, arr + N);
// Print all elements of vector
for (auto ele : v) {
cout << ele << " ";
}
return 0;
}
Method 6: Using Inbuilt Function Transform(first_iterator, last_iterator, back_insert(), function): The std::transform() function takes 4 arguments, an iterator to the first element of the array, an iterator to the last element of the array, the back_inserter function to insert values from the back and a user-defined function which can be used to modify all the elements of the array i.e, perform a unary operation, convert lower case characters to upper case, etc.
Below is the implementation of the above approach:
C++14
// C++ program of the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to increment the value by 1
int increment(int x)
{
return x + 1;
}
// Driver code
int main()
{
// Initialise an array
int arr[] = { 1, 2, 3, 4, 5 };
int N = sizeof(arr) / sizeof(arr[0]);
// Initialize an empty vector
vector<int> v;
// Copy the elements of the array into
// vector v and increment each value
transform(arr, arr + N, back_inserter(v), increment);
// Print all elements of vector
for (auto ele : v) {
cout << ele << " ";
}
return 0;
}
Similar Reads
Get first and last elements from Array and Vector in CPP Given an array, find first and last elements of it. Input: {4, 5, 7, 13, 25, 65, 98} Output: First element: 4 Last element: 98 In C++, we can use sizeof operator to find number of elements in an array. CPP // C++ Program to print first and last element in an array #include <iostream> using nam
2 min read
How to Erase Duplicates and Sort a Vector in C++? In this article, we will learn how to remove duplicates and sort a vector in C++.The simplest method to remove the duplicates and sort the vector is by using sort() and unique() functions. Letâs take a look at an example:C++#include <bits/stdc++.h> using namespace std; int main() { vector<i
3 min read
Different Ways to Convert Vector to Array in C++ STL In C++, vectors are dynamic arrays that can resize according to the number of elements. In this article, we will learn how to convert a vector to a C-style array in C++.The easiest way to convert a vector to array is by creating a new array and copy all the elements of vector into it using copy() fu
3 min read
Advantages of Vector Over Array in C++ In C++, both vectors and arrays are used to store collections of elements, but vector offers significant advantages over arrays in terms of flexibility, functionality, and ease of use. This article explores the benefits of using vectors in C++ programming.The major advantages of vector over arrays a
3 min read
How to insert elements in C++ STL List ? List has been discussed in many articles, but the sole purpose of this article is to cover all types of insertions that are possible to be carried in a list container and to give a detailed insight on the insertion operations. List and its many functions are defined under the header file "list" . Va
6 min read
Copy File To Vector in C++ STL Prerequisite:Â Vectors in C++ STLFile Handling in C++ The C++ Standard Template Library (STL) provides several useful container classes that can be used to store and manipulate data. One of the most commonly used container classes is the vector. In this article, we will discuss how to copy the conte
2 min read
Array of Vectors in C++ STL Prerequisite: Arrays in C++, Vector in C++ STL An array is a collection of items stored at contiguous memory locations. It is to store multiple items of the same type together. This makes it easier to get access to the elements stored in it by the position of each element. Vectors are known as dynam
3 min read
Passing a Vector to Constructor in C++ Just like any other data, we can also pass a vector to a constructor of the desired class. We can pass it by value or by reference. What we do with it depends on our requirement. The following are some of the common cases:Copy Data to Member VectorIf we want to store the copy of the vector in the cl
3 min read
Reading Lines by Lines From a File to a Vector in C++ STL Prerequisites: STL in C++Vector in C++File handling in C++ The Standard Template Library (STL) is a set of C++ template classes to provide common programming data structures and functions such as lists, stacks, arrays, etc. It is a library of container classes, algorithms, and iterators. Vector in C
2 min read