Domanda di colloquio di Hyves

How do you mitigate collision in your own implementation of HashTable?

Risposta di colloquio

Anonimo

4 dic 2015

In case of collision I may need to add a list for each key in the HashTable. The list will have key and value for each collision and when user queries it will check in the list and return.