Class Summary |
BucketScan |
Scans an entire hash index file, bucket by bucket; created only through the
openScan() method in the HashIndex class. |
DataEntry |
Records stored in an index file; using the textbook's "Alternative 2" (see
page 276) to allow for multiple indexes. |
HashBucket |
A bucket is a linked list of SortedPages (overflow pages). |
HashIndex |
Minibase Hash Index |
HashScan |
A HashScan object is created only through the function openScan() in the
HashIndex class. |
SortedPage |
A base class for index pages that automatically stores records in ascending
order by key value. |