Exercise: Hash Tables
Implement the addSlow() method in LinearHashTable.
We'll cover the following...
Task
Implement an addSlow()
method for adding an element x
to a LinearHashTable
, which simply stores x
in the first null array entry it finds.
...