Concurrent Versions System (CVS) Question:

What are the techniques that used to handle the collisions in hash tables?

Tweet Share WhatsApp

Answer:

We can use two major techniques to handle the collisions. They are open addressing and separate chaining. In open addressing, data items that hash to a full array cell are placed in another cell in the array. In separate chaining, each array element consist of a linked list. All data items hashing to a given array index are inserted in that list.

Download CVS PDF Read All 27 CVS Questions
Previous QuestionNext Question
list some CVS commands?What is the advantage of a hash table?