Please enable JavaScript.
Coggle requires JavaScript to display documents.
Hashing - Coggle Diagram
Hashing
Open Hashing
-
-
Search
Compute h(K) = j
If the j-th linked list is empty, element not found
Otherwise, search the linked list
-
-
-
-
Its a very efficient way to implement dictionaries, use more Space( The space eficcience is worst) to get an better Time Efficcience.
-