Lesson 17. STL Dynamic Array Classes

Unlike static arrays, dynamic arrays supply the programmer with the flexibility of storing data without needing to know the exact volume thereof at the time of programming the application. Naturally, this is a frequently needed requirement, and the Standard Template Library (STL) supplies a ready-to-use solution in the form of the std::vector class.

In this lesson, you learn

• The characteristics of std::vector

• Typical vector operations

• The concept of a vector’s size and capacity

• The STL deque class

The Characteristics of std::vector

vector is a template class that supplies generic functionality of a dynamic array and features the following characteristics:

• Addition of elements to the end of the array ...

Get Sams Teach Yourself C++ in One Hour a Day, Seventh Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.