This repo holds the source code for the examples used in the Data Structures class during the Fall of 2020.
- Bag - Unordered collection of items with repetitions. This implementation uses the Object Java class. Project in repo: ex01
- Set - Unordered collection of items with no repetitions. This implementation uses Java Generics. Project in repo: to be done.