Explain the internal working of a hash map?

devquora
devquora

Posted On: Dec 26, 2020

 

In Java, A HashMap is a map used to store mappings or links of key-value pairs that works on the hashing principle. It is considered as a data structure that allows us to store objects and retrieve it in constant time O(1).

    Related Questions

    Please Login or Register to leave a response.

    Related Questions