Standard Template Library (STL)
Standard Template Library (STL)
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: (often asked in C++ Interview Questions)
- Sequence containers:
array,forward_list - Unordered associative containers:
unordered_[multi]set,unordered_[muti]map(implemented as Hash Table)
Other
forward_list