std::vector
Defined in header <vector>
|
||
template< class T, |
(1) | |
namespace pmr { template< class T > |
(2) | (since C++17) |
std::vector
is a sequence container that encapsulates dynamic size arrays.Except for the std::vector<bool>
partial specialization, the elements are stored contiguously, which means that elements can be accessed not only through iterators, but also using offsets to regular pointers to elements. This means that a pointer to an element of a vector may be passed to any function that expects a pointer to an element of an array.
The storage of the vector is handled automatically, being expanded as needed. Vectors usually occupy more space than static arrays, because more memory is allocated to handle future growth. This way a vector does not need to reallocate each time an element is inserted, but only when the additional memory is exhausted. The total amount of allocated memory can be queried using capacity() function. Extra memory can be returned to the system via a call to shrink_to_fit()[1].
Reallocations are usually costly operations in terms of performance. The reserve() function can be used to eliminate reallocations if the number of elements is known beforehand.
The complexity (efficiency) of common operations on vectors is as follows:
- Random access - constant 𝓞(1).
- Insertion or removal of elements at the end - amortized constant 𝓞(1).
- Insertion or removal of elements - linear in the distance to the end of the vector 𝓞(n).
std::vector
(for T
other than bool) meets the requirements of Container, AllocatorAwareContainer(since C++11), SequenceContainer, ContiguousContainer(since C++17) and ReversibleContainer.
All member functions of std::vector are constexpr: it is possible to create and use std::vector objects in the evaluation of a constant expression.However, |
(since C++20) |
- ↑ In libstdc++,
shrink_to_fit()
is not available in C++98 mode.
Contents |
Template parameters
T | - | The type of the elements.
| ||||||||||||||
Allocator | - | An allocator that is used to acquire/release memory and to construct/destroy the elements in that memory. The type must meet the requirements of Allocator. The behavior is undefined(until C++20)The program is ill-formed(since C++20) if Allocator::value_type is not the same as T .
|
Specializations
The standard library provides a specialization of std::vector
for the type bool, which may be optimized for space efficiency.
space-efficient dynamic bitset (class template specialization) |
Iterator invalidation
Operations | Invalidated |
---|---|
All read only operations | Never. |
swap, std::swap | end() |
clear, operator=, assign | Always. |
reserve, shrink_to_fit | If the vector changed capacity, all of them. If not, none. |
erase | Erased elements and all elements after them (including end()). |
push_back, emplace_back | If the vector changed capacity, all of them. If not, only end(). |
insert, emplace | If the vector changed capacity, all of them. If not, only those at or after the insertion point (including end()). |
resize | If the vector changed capacity, all of them. If not, only end() and any elements erased. |
pop_back | The element erased and end(). |
Member types
Member type | Definition | ||||
value_type
|
T
| ||||
allocator_type
|
Allocator
| ||||
size_type
|
Unsigned integer type (usually std::size_t) | ||||
difference_type
|
Signed integer type (usually std::ptrdiff_t) | ||||
reference
|
value_type& | ||||
const_reference
|
const value_type& | ||||
pointer
|
| ||||
const_pointer
|
| ||||
iterator
|
| ||||
const_iterator
|
|