D H I L M T

D

delete(T) - Method in class HashTable
Removes and returns the given item from the hashtable.
displayStats(PrintStream) - Method in class HashTable
Prints statistics about the hashtable to the PrintStream supplied.
dump(PrintStream) - Method in class HashTable
Prints all the items in the hashtable to the PrintStream supplied.

H

HashTable<T> - Class in <Unnamed>
This class implements a hashtable that using chaining for collision handling.
HashTable(int, double) - Constructor for class HashTable
Constructs an empty hashtable with the given initial size, maximum load factor, and no maximum chain length.
HashTable(int, double, int) - Constructor for class HashTable
Constructs an empty hashtable with the given initial size, maximum load factor, and maximum chain length.

I

insert(T) - Method in class HashTable
Inserts the given item into the hashtable.

L

lookup(T) - Method in class HashTable
Determines if the given item is in the hashtable and returns it if present.

M

main(String[]) - Static method in class TestHash
Main method to run the HashTable class.

T

TestHash - Class in <Unnamed>
This program tests some of the functionality of the HashTable class.
TestHash() - Constructor for class TestHash
 

D H I L M T