Define separate chaining
3 years ago
Data Structure and Algorithm
It is an open hashing technique. A pointer field is added to each record location, when an overflow occurs, this pointer is set to point to overflow blocks making a linked list.
In this method, the table can never overflow, since the linked lists are only extended upon the arrival of new keys
Sanisha Maharjan
Jan 23, 2022