Articles under the 'HashMap' tag
The Java HashMap Under the Hood
OverviewHashMap is a K/V key-value pair data structure with fast search and good insertion and deletion performance. It is implemented based on the Map interface of the hash table. It is one of the commonly used Java collections and is non-thread safe.
Data StructureJDK1.7
The bottom layer uses
...
More >>