package documentation
Code from the chapter "Maps, Hash Tables, and Skip Lists".
Module | chain |
Provides the ChainHashMap class implementing a map using hashing with separate chaining. |
Module | cost |
Provides the CostPerformanceDatabase class demonstrating a use case for a sorted map. |
Module | hash |
Provides the HashMapBase class used by several concrete map implementations. |
Module | map |
Provides the MapBase class used by various concrete map implementations. |
Module | multi |
Provides the MultiMap class demonstrating an adaptation of a standard map. |
Module | probe |
Provides the ProbeHashMap implementing a map using hashing with linear probing. |
Module | sorted |
Provides a SortedTableMap class implementing the sorted map ADT. |
Module | unsorted |
Provides the UnsortedTableMap class implementing a simple map. |
Module | word |
A case study computing word frequencies within a text document. |