[C++] How to Use "vector" of STL
vector is a sequence container of C++ Standard Template Library (STL). It is similar with Array, but it can automatically expand the space when we store more elements, which is convenient.
Read More »[C++] How to Use "vector" of STL