February 2022
Beginner
848 pages
22h 40m
English
Put in simple terms, the Standard Template Library (STL) is a set of template classes and functions that supply a programmer with
■ Containers for storing information
■ Iterators for accessing the information stored
■ Algorithms that comprise utility functions that work on containers using iterators
In this lesson, you get an overview of these three pillars of STL, which are explained in detail in forthcoming lessons.
Containers are STL classes that are used to store data. The STL supplies two types of container classes:
■ Sequential containers
■ Associative containers
In addition to these, the STL also provides classes called container adapters that are ...
Read now
Unlock full access