Standard Template Library
It is pre-compiled library and it has 3 components: Containers, Iterators and Algorithms.
Containers
It is used to store the data. It has 3 type:
- Sequence
- Associative
- Derived
Sequence Containers
- vector
- list (doubly link list)
- deque
- forward list (singly link list)
- array
- string