View on GitHub

reading-notes

Implementation: Hash Tables

What hash table =>

img

How to implement =>

In this method, the hash is independent of the array size and it is then reduced to an index (a number between 0 and array_size − 1) by using the modulo operator (%).

img