Student Name: __________________
Class and Section __________________
Total Points (20 pts) __________________
Due: November 7, 2018 before the class
Project: Implementing Hash Set
CSCI 3230 Data Structures
Georgia Southern University
Problem Description:
*27.15 (Modify Listing 27.4 MyHashSet.java) The <CORE>book</CORE><ALT1>text</ALT1> uses
LinkedList for buckets. Replace LinkedList with AVLTree. Assume that E is Comparable.
Redefine MyHashSet as follows:
class MyHashSet<E extends Comparable<E>> implements Collection<E> {
…
}
Test your program using the main method in <LINK>Listing 27.5</LINK>.
Name your program Exercise27_15.
Source code:
Insert Source code here :
What to submit?