Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 538 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 538 Bytes

Dynamic Hashtable

This is a repo for my custom dynamic hash table in Java

The Assignment

  • 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.

How It Works

  • 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