Introduction
Get introduced to the concepts we will learn in this chapter.
We'll cover the following...
We'll cover the following...
The use of containers from the standard library is widely employed among C++
programmers. It’s rare to find C++ code bases without references to std::vector
or
std::string
, for example. However, in our experience, standard library algorithms
are much less frequently used, even ...