This video demonstrates how to use the vector class from the C++ standard library. It is shown
how to add an element using the push_back function
how to insert an element at the beginning and in the middle of the vector
how to remove an element, and
how to iterator over the elements of a vector
The vector class implements the array list ADT. Watch the following video to learn what an array list is:
• Data Structures: What is an Array List (ve...