This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/2_Silver/Silver_Containers.md
2020-06-03 16:16:33 -04:00

16 lines
No EOL
500 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Containers from C++ standard template library (STL)
- CPH 4
- Linear
- Queues / Deques
- C++ Lists?
- Linked List
- Stacks
- Log
- Priority Queues
- BST / TreeSet / TreeMap (Python doesnt have log n map)
- Sets / Maps
- Multiset (F FOR JAVA) (just teach a workaround or smthn ig) TreeMap<value,numoccrances> (erase by value pitfall)
- Custom comparator (prerequisite for basically all silver topics in Java)
- HashSets / HashMaps
- ex?