Definition

Quadratic probing

Quadratic probing builds the next attempt with index_i = (h + c1 * i + c2 * i * i) mod capacity.