May 2012
Intermediate to advanced
768 pages
14h 39m
English
Put in simple terms, the standard template library (STL) is a set of template classes and functions that supply the programmer with
• Containers for storing information
• Iterators for accessing the information stored
• Algorithms for manipulating the content of the containers
In this lesson, you get overview on these three pillars of STL.
Containers are STL classes that are used to store data. STL supplies two types of container classes:
• Sequential containers
• Associative containers
In addition to these STL also provides classes called Container Adapters that are variants of the same with reduced functionality which support a specific purpose.
Read now
Unlock full access