Standard Template Library
Note
C++ Standard Library == STL + some other stuff
This is also super important to master for Competitive Programming.
STL Containers
- Sequence Containers:
vector
,deque
,list
- Container Adapters:
stack
,queue
,priority_queue
- Ordered associative containers:
[multi]set
,[multi]map
C++11/14/17 adds:
- Sequence containers:
array
,forward_list
- Unordered associative containers:
unordered_[multi]set
,unordered_[muti]map
(implemented as Hash Table)
Other
forward_list