Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 278 Bytes

README.md

File metadata and controls

2 lines (2 loc) · 278 Bytes

separate-chaining

Separate Chaining is a collision resolution technique used in hash tables. In separate chaining, when multiple keys map to the same index, they are stored in a linked list or separate data structure at that index, rather than being placed in the same slot.