Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to sort HashMap by key in descending order Java

1 Answer

0 votes
import java.util.stream.Collectors;
import java.util.LinkedHashMap;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Map;
   
public class MyClass {
    public static void main(String args[]) {
        HashMap<String, Integer> hmp = new HashMap<String, Integer>();
    
        hmp.put("java", 4);
        hmp.put("c++", 2);
        hmp.put("c", 7);
        hmp.put("python", 5);
        hmp.put("rust", 6);
        hmp.put("c#", 1);
        hmp.put("php", 3);
            
        LinkedHashMap<String, Integer> reverseSortedMap = hmp.entrySet()
                        .stream()
                        .sorted(Map.Entry.comparingByKey(Comparator.reverseOrder()))
                        .collect(Collectors.toMap(
                        Map.Entry::getKey,
                        Map.Entry::getValue,
                        (oldKey, newKey) -> oldKey, LinkedHashMap::new));
 
        System.out.println(reverseSortedMap);
  
    }
}
        
        
        
        
/*
run:
        
{rust=6, python=5, php=3, java=4, c++=2, c#=1, c=7}
        
*/

 



answered Apr 29, 2023 by avibootz

Related questions

1 answer 100 views
2 answers 128 views
1 answer 104 views
1 answer 131 views
1 answer 155 views
1 answer 165 views
...