Pregunta de entrevista de Veeva Systems

How is a Java HashMap actually implemented?

Respuesta de la entrevista

Anónimo

3 de ene de 2013

with array of linkedlists array index is the hash value of the key linkedlist stores both the actual value and the actual key to make comparison due to potential collisions

2