What do you mean by quadratic probing?
4 years ago
Data Structure and Algorithm
Quadratic probing is an open addressing collision resolution strategy in which F(i)=i2. There is no guarantee of finding an empty cell once the table gets half full if the table size is not prime. This is because at most half of the table can be used as alternative locations to resolve collisions.
Sanisha Maharjan
Jan 23, 2022