Open Addressing (rehashing): each position of the array is either EMPTY, DELETED, or OCCUPIED.
To insert V:
How to compute another position?
Linear Probing:
P = (1 + P) mod TABLE_SIZE