CIS 22 - Data Structures: Hash Table - Handling Collisions
index, index + 1, index + 2, index + 3, ...
int Hashtable::rehash(int index)
{
int new_index;
new_index = (index + 1) % TABLE_SIZE;
return new_index;
}
Linear Probing is resolving a hash collision by sequentially searching a hash table beginning at the location returned by the hash function.index, index + 1, index + 4, index + 9, index + 16, ...

