Chain Hashing

This is a form of Hash table (, ) who’s entries in the associative array are linked lists. Given an element to add it to this hash table you calculate then append it to the associated linked list. Then to check if an element is in your hash table calculate and then search the associated linked list.