Data Structures and Algorithms
with Object-Oriented Design Patterns in C#![]() ![]() ![]() ![]() ![]() |
Program introduces the ChainedHashTable class.
The ChainedHashTable class extends the
AbstractHashTable class introduced
in Program
.
The ChainedHashTable class contains
a single field called array.
It is declared as an array of LinkedLists.
(The LinkedList class is described in Chapter
).
Program: ChainedHashTable fields.