STL?
Standard Template Library, It provides us with implementation of various Data structures like: priority_queue, set, map….
It also provies iterators and functors that make it easier to work with these data structures.
Components of STL
4
1. Containers
2. Algorithms
3. Iterators
4. Functors
Containers
Containers are the data structures that are used to store data. They are implemented as class and have methods defined that operates on them.
4 types:
- Sequence Containers
- Container Adaptor
- Associative Containers
- Unordered Associative Containers