AI Features

Vectors

In this lesson, we'll compare vectors with arrays and see how to use C++ STL Vector.

We'll cover the following...

Array vs Vector

Many times, you need a structure like an array that is dynamic in size. Vectors are dynamic arrays. Vectors, similar to an array, have contiguous memory allocation so that random access is ...