Assignment #7

Due: Friday, November 19, 2PM

For this assignment, you will write two more implentations of the interface Dictionary to be used with your program that maintains the database of customers. The first will organize the set of customers in a Binary Search Tree and the second will use a Hash Table with separate chaining.

Since all of these implementations implement the same interface, all you should need to change in your program is the line of code in which the object which stores the set of customers in instantiated.

Here are more details about each of the individual implementations: