Open In App

HashMap in Java

Last Updated : 08 Aug, 2025
Comments
Improve
Suggest changes
249 Likes
Like
Report

A HashMap is a part of Java’s Collection Framework and implements the Map interface. It stores elements in key-value pairs, where:

  • Keys are unique.
  • Values can be duplicated.
  • Data is stored using hashing for quick access, insertion, and deletion.Internally uses Hashing (similar to Hashtable in Java).

Key Features of HashMap

  • Not synchronized (unlike Hashtable in Java) and hence faster for most cases.
  • Allows to store the null keys as well, but there should be only one null key object, and there can be any number of null values.
  • Duplicate keys are not allowed in HashMap; if you try to insert a duplicate key, it will replace the existing value of the corresponding key. 
  • HashMap uses keys in the same way as an Array uses an index.
  • HashMap allows for efficient key-based retrieval, insertion, and removal with an average O(1) time complexity.

Example: Java Program to Create HashMap in Java


Output
25
false
2

HashMap Declaration

public class HashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable

It takes two parameters namely as follows:

  • The type of keys maintained by this map
  • The type of mapped values

Note:
Keys and values in a HashMap cannot be primitive types.

  • Keys must be objects that implement hashCode() and equals(), and should be immutable so their hash code and equality remain constant.
  • Values can be wrapper classes, custom objects, arrays, reference types, or null.
  • Example: Arrays can be used as values but not as keys.

HashMap in Java implements Serializable, Cloneable, Map<K, V> interfaces.Java HashMap extends AbstractMap<K, V> class. The direct subclasses are LinkedHashMap and PrinterStateReasons.

Hierarchy of HashMap in Java

Java-HashMap-Class-Hierarchy
Hierarchy

Capacity of HashMap

The capacity of a HashMap is the number of buckets it can hold for storing entries.

new capacity=old capacity×2

  • Default capacity: Default capacity of hashmap is 16.
  • Load factor: 0.75 (default): when 75% of the capacity is filled, the capacity is doubled.

Java HashMap Constructors

HashMap provides 4 constructors and the access modifier of each is public.

1. HashMap(): It is the default constructor which creates an instance of HashMap with an initial capacity of 16 and a load factor of 0.75.

Syntax:

HashMap<K, V> hm = new HashMap<K, V>();

Example: Java program to Demonstrate the HashMap() constructor


Output
Mappings of HashMap hm1 are : {1=one, 2=two, 3=three}
Mapping of HashMap hm2 are : {4=four, 5=five, 6=six}

2. HashMap(int initialCapacity): It creates a HashMap instance with a specified initial capacity and load factor of 0.75.

Syntax:

HashMap<K, V> hm = new HashMap<K, V>(int initialCapacity);

Example: Java program to DemonstrateHashMap(int initialCapacity) Constructor


Output
Mappings of HashMap hm1 are : {1=one, 2=two, 3=three}
Mapping of HashMap hm2 are : {4=four, 5=five, 6=six}

3. HashMap(int initialCapacity, float loadFactor): It creates a HashMap instance with a specified initial capacity and specified load factor.

Syntax:

HashMap<K, V> hm = new HashMap<K, V>(int initialCapacity, float loadFactor);

Example:


Output
Mappings of HashMap hm1 are : {1=one, 2=two, 3=three}
Mapping of HashMap hm2 are : {4=four, 5=five, 6=six}

4. HashMap(Map map): It creates an instance of HashMap with the same mappings as the specified map.

HashMap<K, V> hm = new HashMap<K, V>(Map map);

Example: Java program to demonstrate the HashMap(Map map) Constructor


Output
Mappings of HashMap hm1 are : {1=one, 2=two, 3=three}
Mapping of HashMap hm2 are : {1=one, 2=two, 3=three}

Performing Various Operations on HashMap

1. Adding Elements in HashMap in Java

To add an element to the map, we can use the put() method. However, the insertion order is not retained in the Hashmap. Internally, for every element, a separate hash is generated and the elements are indexed based on this hash to make it more efficient.

Example: Java program to add elements to the HashMap


Output
Mappings of HashMap hm1 are : {1=Geeks, 2=For, 3=Geeks}
Mapping of HashMap hm2 are : {1=Geeks, 2=For, 3=Geeks}

2. Changing Elements in HashMap in Java

After adding the elements if we wish to change the element, it can be done by again adding the element with the put() method. Since the elements in the map are indexed using the keys, the value of the key can be changed by simply inserting the updated value for the key for which we wish to change.

Example: Java program to change elements of HashMap


Output
Initial Map {1=Geeks, 2=Geeks, 3=Geeks}
Updated Map {1=Geeks, 2=For, 3=Geeks}

3. Removing Element from Java HashMap

To remove an element from the Map, we can use the remove() method. This method takes the key value and removes the mapping for a key from this map if it is present in the map.

Example: Java program to remove elements from HashMap


Output
Mappings of HashMap are : {1=Geeks, 2=For, 3=Geeks, 4=For}
Mappings after removal are : {1=Geeks, 2=For, 3=Geeks}

4. Traversal of Java HashMap

We can use the Iterator interface to traverse over any structure of the Collection Framework. Since Iterators work with one type of data we use Entry< ? , ? > to resolve the two separate types into a compatible format. Then using the next() method we print the entries of HashMap.

Example: Java program to traversal a HashMap


Output
Key: vaibhav Value: 20
Key: vishal Value: 10
Key: sachin Value: 30

Time and Space Complexity

HashMap provides constant time complexity for basic operations.

Methods

Time Complexity

Space Complexity

Adding Elements in HashMap

O(1)

O(N)

Removing Element from HashMap

O(1)

O(N)

Extracting Element from Java

O(1)

O(N)

Synchronized HashMap

HashMap is unsynchronized, meaning multiple threads can access it at the same time. If at least one thread modifies it, you must synchronize externally (wrap with Collections.synchronizedMap()), to prevent concurrent access issues.

Map m = Collections.synchronizedMap(new HashMap(...));

Now the Map m is synchronized.  Iterators of this class are fail-fast if any structure modification is done after the creation of the iterator, in any way except through the iterator's remove method. In a failure of an iterator, it will throw ConcurrentModificationException.

HashMap is mainly the implementation of hashing. It is useful when we need efficient implementation of search, insert and delete operations. Please refer to the applications of hashing for details.

Methods of HashMap

  • K – The type of the keys in the map.
  • V – The type of values mapped in the map.

Method

Description

clear()Removes all of the mappings from this map.
clone()Returns a shallow copy of this HashMap instance.
compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)Attempts to compute a mapping for the specified key and its current mapped value
computeIfAbsent(K key, Function<?super K,? extends V> mappingFunction)Adds computed value if key absent/null.
computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value. 
containsKey(Object key)Returns true if this map contains a mapping for the specified key.
containsValue(Object value)Returns true if this map maps one or more keys to the specified value.
entrySet()Returns a Set view of the mappings contained in this map.
get(Object key)Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
isEmpty()Returns true if this map contains no key-value mappings.
keySet()Returns a Set view of the keys contained in this map.
merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)If the specified key is not already associated with a value or is associated with null, associate it with the given non-null value.
put(K key, V value)Associates the specified value with the specified key in this map.
putAll(Map<? extends K,? extends V> m)Copies all of the mappings from the specified map to this map.
remove(Object key)Removes the mapping for the specified key from this map if present.
size()Returns the number of key-value mappings in this map.
values()Returns a Collection view of the values contained in this map.

 Methods inherited from class java.util.AbstractMap

Method

Description

equals()

Compares the specified object with this map for equality.

hashCode()

Returns the hash code value for this map.

toString()

Returns a string representation of this map.

Methods inherited from interface java.util.Map

Method

Description

equals()Compares the specified object with this map for equality.

forEach(BiConsumer<? super K, ? super V> action)

Performs the given action for each entry in this map until all entries have been processed or the action throws an exception. 
getOrDefault(Object key, V defaultValue)Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.
hashCode()Returns the hash code value for this map.
putIfAbsent(K key, V value)If the specified key is not already associated with a value (or is mapped to null) associates it with the given value and returns null, else returns the current value.
remove(Object key, Object value)Removes the entry for the specified key only if it is currently mapped to the specified value.
replace(K key, V value)Replaces the entry for the specified key only if it is currently mapped to some value.
replace(K key, V oldValue, V newValue)Replaces the entry for the specified key only if currently mapped to the specified value.

replaceAll(BiFunction<? super K,? super V,? extends V> function)

Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.

Recommended DSA Problems On HashMap

  1. Count Frequencies in an Array
  2. Most Frequent Element
  3. Count distinct elements in every window of size K
  4. Check if two arrays are equal or not
  5. 2 Sum - Count Pairs with target sum
  6. Count all pairs with absolute difference equal to K
  7. Check If Array Pair Sums Divisible by K
  8. Max distance between two occurrences in array
  9. Subarray with Given Sum – Handles Negative Numbers
  10. Remove minimum elements such that no common elements exist in two arrays
  11. 3 Sum - Count all triplets with target sum
  12. Longest Subarray with Sum Divisible by K
  13. Longest Subarray having Majority Elements Greater than K

HashMap with Java
Visit Course explore course icon

Similar Reads