Problem
Another method for resolving collisions with open addressing is to keep a separate array called the overflow table, into which are put all entries that collide with an occupied location. They can either be inserted with another hash function or simply inserted in order, with sequential search used for retrieval. Discuss the advantages and disadvantages of this method.