This post will discuss various methods to sort a map by values in Java, i.e., sort the map according to the natural ordering of its values.

1. Using TreeMap

TreeMap is a Red-Black tree-based implementation of Map, which is sorted according to comparator passed to its constructor. By writing a custom comparator to the TreeMap, we can sort the map according to the natural ordering of its values, as shown below:

Download  Run Code

Output:

Sorted map by values :
{China=Beijing, India=New Delhi, Japan=Tokyo, USA=Washington D.C.}

 
Using Guava’s TreeMap:

Google’s Guava library also provides TreeMap implementation, which we can use to create a mutable, empty TreeMap instance, which is sorted according to a Comparator passed to its constructor.

Download Code

2. Using LinkedHashMap

LinkedHashMap is a hash table and linked list implementation of the Map interface, with predictable iteration order, which is the order in which values were inserted into the map. We can use this property to produce a copy of a map that is sorted according to the natural ordering of its values.

  1. Create a list of map entries and sort them based on their values.
  2. Create an empty LinkedHashMap and for every map entry in the sorted list, insert key-value pair in it.

The resultant LinkedHashMap will be sorted by values.

Download  Run Code

Output:

Sorted map by values :
{China=Beijing, India=New Delhi, Japan=Tokyo, USA=Washington D.C.}

3. Using Java 8

We can also use Java 8 Stream to sort map by values. Following are the steps:

  1. Obtain stream from the set view of the mappings contained in the map.
  2. Sort the stream in natural order of values using Stream.sorted() method by passing comparator returned by Map.Entry.comparingByValue().
  3. Collect all sorted elements in a LinkedHashMap using Stream.collect() with Collectors.toMap().

 
Please note that a stream is a sequence of items, not a sequence of key/value pairs. So, we can’t construct a map out of a stream without specifying how to extract values and values from it. Java 8 provides Collectors.toMap() method for this purpose. We need to use an overloaded version of toMap() that returns LinkedHashMap instead of HashMap to retain the sorted order.

Download  Run Code

Output:

Sorted map by values :
{China=Beijing, India=New Delhi, Japan=Tokyo, USA=Washington D.C.}

 
Following is another approach that doesn’t use Java 8 collectors. It uses the Stream.forEachOrdered() method on the sorted stream that inserts each element of the stream into a new LinkedHashMap.

Download  Run Code

Output:

Sorted map by values :
{China=Beijing, India=New Delhi, Japan=Tokyo, USA=Washington D.C.}

That’s all about sorting Map by values in Java.

 
Related Post:

Sort Map by keys in Java

 
Exercise: Modify above code to sort map by reverse ordering of its values

 
References:

1. TreeMap Javadoc – Java SE 8
2. LinkedHashMap Javadoc – Java SE 8 Javadoc