Repo for code presented in the lectures of the class. Each folder is an Eclipse Project, which you can import as follows:
- Clone the whole repo locally.
- From eclipse, select File->Import->General->Existing Project into Workspace
- Browse to the project directory
- Press the finish button.
This should enable you to open the project.
- bag - Bag ADT implemented with arrays
- set - Set ADT implemented with generics, arrays, and object composition via bags.
- list - List ADT implemented with generics, arrays, and singly linked lists.
- stack - Stack ADT implemented with generics, arrays, and singly linked lists.
- queue - Queue ADT implemented with generics, circular arrays, and doubly linked lists.
- map - Map ADT implemented with generics, and singly linked lists.
- hashtable - Map ADT implemented with generics, and hash tables.