Open addressing: The easiest way to resolve a collision is to begin with the hash address and do a sequential search by the table for an empty location. The idea is to place the record in the next available position in the array. This method is known as linear probing. An empty record is indicated by a special value known as null. The main drawback of the linear probe method is clustering.