September 2020
Intermediate to advanced
750 pages
16h 14m
English
The C++ standard library has evolved a lot with C++11, C++14, C++17, and now C++20. However, at its core initially sat three main pillars: containers, algorithms, and iterators. They are all implemented as general-purpose classes or function templates. In this chapter, we'll look at how these can be employed together for achieving various goals.
We will cover the following recipes in this chapter:
vector<bool> for variable-size sequences of bitsRead now
Unlock full access