I'm already aware of the following:
- arrays
- bitsets
- hash maps and sets
- regular maps and sets
- iterators
- lists
- pairs
- tuples
- queues, deques, and priority queues
- stacks
- valarrays
- vectors
Is there any other type of data structure available in the C++ library. What I'm specifically looking for is graphs, but I'd also like to know what else is there.
Also, I'd like to know if there are any external libraries I can link with my projects to implement a graph.