Pregunta de entrevista de Hyves

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

Respuesta de la entrevista

Anónimo

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.