Vectors
Vectors are more refined version of arrays. They simplify the insertion and deletion of values.
We'll cover the following
std::vector is a homogeneous container, for which it’s length can be adjusted at runtime. std::vector
needs the header <vector>
. As it stores its elements contiguously in memory, std::vector
supports pointer arithmetic.
Get hands-on with 1400+ tech skills courses.