This is a repo for my custom dynamic hash table in Java
- Create a dynamically resizeable hash table, given an book title and ISBN number.
- Use Extraction and division for the last 3 digits of the ISBN number.
- Use linear probing to handle collisions.
- HashTableDriver instantiates a DynamicHashTable
- Put methods to place elements into the hashtable
- Remove method to take elements out of the hashtable
- Find method locates a Book inside the hashtable and returns its index