Veeva Systems Interview Question

How is a Java HashMap actually implemented?

Interview Answer

Anonymous

Jan 3, 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