Vector in C
Vector in C
Vectors are the same as dynamic arrays (mảng động) with the ability
to resize themselves automatically (tự thay đổi kích thước) when an
element is inserted or deleted, with their storage being handled
automatically by the container. Vector elements are placed in
contiguous storage so that they can be accessed and traversed
using iterators.
In vectors, data is inserted at the end. Inserting at the end takes
differential time, as sometimes the array may need to be extended.
Removing the last element takes only constant time because no
resizing happens. Inserting and erasing at the beginning or in the
middle is linear in time.
What is std::vector in C++?
std::vector in C++ is the class template that contains the vector
container and its member functions. It is defined inside
the <vector> header file. The member functions of the std::vector
class provide various functionalities to vector containers.
Key Characteristics of Vectors
Dynamic Sizing: Vectors automatically resize when you
add or remove elements. This flexibility is one of the main
reasons vectors are preferred over traditional arrays in
many situations.
Efficient Access: Since vector elements are stored in
contiguous memory locations, you can access elements in
constant time using their index, similar to arrays.
Insertion and Deletion: Insertion of elements is typically
done at the end of the vector, where it operates in constant
time. However, inserting or deleting elements at the
beginning or middle of the vector takes linear time due to
the need to shift elements
Syntax to Declare Vector in C++
std::vector<dataType> vectorName;
where the data type is the type of data of each element of the
vector. You can remove the std:: if you have already used the std
namespace.
To master vectors and other STL components, check out
our Complete C++ Course, which covers the ins and outs of C++
STL with real-world examples and hands-on projects.
Initialization of Vector in C++
We can initialize a vector in the following ways:
1. Initialization Using List
This initialization is done with a declaration. Here, we pass the list of
elements to the vector constructor to create a vector with the
specified elements.
vector<dataType> name({ value1, value2, value3 ....});
2. Initialization With a Single Value
This initialization is also done with declaration. Here, we specify the
size of the vector and then initialize every element of the vector
with the value.
vector<dataType> name(size, value);
3. Initialization From Another Vector
This initialization is used to create a vector that is an exact copy of
other_vec.
vector<dataType> name(other_vec);
Commonly Used Member Functions
Some commonly used member functions of std::vector class are
written below:
Iterators
1. begin() – Returns an iterator pointing to the first element in
the vector
2. end() – Returns an iterator pointing to the theoretical
element that follows the last element in the vector
3. rbegin() – Returns a reverse iterator pointing to the last
element in the vector (reverse beginning). It moves from
last to first element
4. rend() – Returns a reverse iterator pointing to the theoretical
element preceding the first element in the vector
(considered as reverse end)
5. cbegin() – Returns a constant iterator pointing to the first
element in the vector.
6. cend() – Returns a constant iterator pointing to the
theoretical element that follows the last element in the
vector.
7. crbegin() – Returns a constant reverse iterator pointing to
the last element in the vector (reverse beginning). It moves
from last to first element
8. crend() – Returns a constant reverse iterator pointing to the
theoretical element preceding the first element in the vector
(considered as reverse end)
C++
// C++ program to illustrate the
// iterators in vector
#include <iostream>
#include <vector>
int main()
{
vector<int> g1;
return 0;
}
Output
Output of begin and end: 1 2 3 4 5
Output of cbegin and cend: 1 2 3 4 5
Output of rbegin and rend: 5 4 3 2 1
Output of crbegin and crend : 5 4 3 2 1
Capacity
1. size() – Returns the number of elements in the vector.
2. max_size() – Returns the maximum number of elements that
the vector can hold.
3. capacity() – Returns the size of the storage space currently
allocated to the vector expressed as number of elements.
4. resize(n) – Resizes the container so that it contains ‘n’
elements.
5. empty() – Returns whether the container is empty.
6. shrink_to_fit() – Reduces the capacity of the container to fit
its size and destroys all elements beyond the capacity.
7. reserve() – Requests that the vector capacity be at least
enough to contain n elements.
C++
// C++ program to illustrate the
// capacity function in vector
#include <iostream>
#include <vector>
int main()
{
vector<int> g1;
return 0;
}
Output
Size : 5
Capacity : 8
Max_Size : 4611686018427387903
Size : 4
Vector is not empty
Vector elements are: 1 2 3 4
Element access
1. reference operator [g] – Returns a reference to the element
at position ‘g’ in the vector
2. at(g) – Returns a reference to the element at position ‘g’ in
the vector
3. front() – Returns a reference to the first element in the
vector
4. back() – Returns a reference to the last element in the
vector
5. data() – Returns a direct pointer to the memory array used
internally by the vector to store its owned elements.
C++
// C++ program to illustrate the
// element access in vector
#include <bits/stdc++.h>
using namespace std;
int main()
{
vector<int> g1;
Output
Reference operator [g] : g1[2] = 30
at : g1.at(4) = 50
front() : g1.front() = 10
back() : g1.back() = 100
The first element is 10
Modifiers
1. assign() – It assigns new value to the vector elements by
replacing old ones
2. push_back() – It push the elements into a vector from the
back
3. pop_back() – It is used to pop or remove elements from a
vector from the back.
4. insert() – It inserts new elements before the element at the
specified position
5. erase() – It is used to remove elements from a container
from the specified position or range.
6. swap() – It is used to swap the contents of one vector with
another vector of same type. Sizes may differ.
7. clear() – It is used to remove all the elements of the vector
container
8. emplace() – It extends the container by inserting new
element at position
9. emplace_back() – It is used to insert a new element into the
vector container, the new element is added to the end of the
vector
C++
// C++ program to illustrate the
// Modifiers in vector
#include <bits/stdc++.h>
#include <vector>
using namespace std;
int main()
{
// Assign vector
vector<int> v;
// Swaps v1 and v2
v1.swap(v2);
Output
The vector elements are: 10 10 10 10 10
The last element is: 15
The vector elements are: 10 10 10 10 10
The first element is: 5
The first element is: 10
The first element is: 5
The last element is: 20
Vector size after erase(): 0
Vector 1: 1 2
Vector 2: 3 4
After Swap
Vector 1: 3 4
Vector 2: 1 2
Time Complexity Considerations
The time complexity for doing various operations on vectors is-
Random access – constant O(1)
Insertion or removal of elements at the end – constant
O(1)
Insertion or removal of elements – linear in the distance
to the end of the vector O(N)
Knowing the size – constant O(1)
Resizing the vector– Linear O(N)
All Member Functions of std::vector
Following is the list of all member functions of std::vector class in
C++:
Vector
Function Description
max_size() Returns the maximum number of elements that the vector can hold.
rbegin() Returns a reverse iterator pointing to the last element of the vector.
swap() Swaps the contents of the vector with those of another vector.
Vector
Function Description
assign() Assigns new values to the vector elements by replacing old ones.
capacity() Returns the size of the storage space currently allocated to the vector.
get_allocator Returns a copy of the allocator object associated with the vector.
Must Read:
How to Check if a Vector Contains a Given Element in C++?
How to find index of a given element in a Vector in C++
Sorting a vector in C++