First page Back Continue Last page Graphics
Advantages over normal array
vector<T> can be dynamically resized; when you run out of space, vector<T> automatically grows.
Elements of vector<T> can be added or removed from the interior of a vector without the need to write new code.
You not only have easy access to the start of a vector, but you can get to the end of it quickly using end( ) or rend( ).