Hashing Example (continued)
Linear Probing: Try h(1993) + 1 mod 10.
If we keep getting collisions, the formula is h(d1d2d3d4) + k mod 10, in the kth attempt. If all 10 positions are full, a new hash table must be created and all the old elements placed in the new table.