•The space for storage is called ``hash table,’’ H
•Ideal hash table data structure is just an array of some
fixed size, TableSize,containing the data items.
•A search for an item is performed on some part (i.e.
data member) of the item, called the key.
•For example, an item could consist of a string (that
serves as the key) and additional data members (for
instance, a name that is part of a large employee
structure, etc.).
•The common convention is to have the table run from 0
to TableSize − 1
3