You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ These searching algorithms use the data structure called binary tree (it is basi
77
77
78
78
### Hash Tables
79
79
80
-
These ones are simple structures that uses a key-value structure in which the key corresponds to a index on an array. So, it means that the given key must refer a unique index on the array that is storing it (we must avoid key/index collisions).
80
+
These ones use a key-value structure in which the key corresponds to an index on an array. So, it means that the given key must refer a unique index on the array that is storing it (we must avoid key/index collisions).
81
81
82
82
-[**Separate Chaining Hash:**](./algorithms/searching/hash-table/SeparateChainingHash.js) It is a hash table that converts the key into indexes to store the data inside an array of sequential searches.
0 commit comments