Vectors
Vectors are more refined version of arrays. They simplify the insertion and deletion of values.
We'll cover the following...
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.
for (int i= 0; i < vec.size(); ++i){std::cout << vec[i] == *(vec + i) << std::endl; // true}
Make sure to distinguish the round and curly braces in the creation of an
std::vectorIf we construct a
std::vector, we mustkeep a few things in mind. The constructor with round braces in the following example creates anstd::vectorwith a capacity of 10 elements, while the constructor with curly braces creates anstd::vectorwith the element 10.std::vector<int> vec(10); std::vector<int> vec{10};The same rules hold true for the expressions
std::vector<int>(10, 2011)...