Please enable JavaScript.
Coggle requires JavaScript to display documents.
Sets and Dictionaries, Space and Time Trade-Offs - Coggle Diagram
Sets and Dictionaries
-
Dictionaries
-
-
-
Hashing
-
For each key, the value of a hash function is computed, assigning a hash address to each key.
Requirements:
A has table's size should not be excessively large compared to the number of keys, but it should be sufficient to not jeopardize the implementation's time efficiency
-
-
If a hash table's size is smaller than the number of keys, there will be collisions. Those can happen even when this condition isn't met, requiring a way to resolve them.
-
-
-
-