I study data structures and I want to ask what are the equivalents of STL containers.
for example
- vector = dynamic array
- queue = queue
- stack = stack
- priority_queue = heap
- list = linked list
- set = tree
- slist = single linked list
- bit_vector = vector bool
- map = pair
- deque = ?
- multiset = ?
- multimap = ?
- hash_set = ?
- hash_map = ?
- hash_multiset = ?
- hash_multimap = ?
- hash = ?
- bit_set = ?