Cuckoo Hashing

Home > Computer Science > Algorithms and data structures > Hash Tables > Cuckoo Hashing

In this type of Hash Table, two or more tables are used, and each element is inserted in one of the tables, if there is a collision, the element is moved to the alternate table.