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 values in ArrayList and entrySet in ascending order with Java

1 Answer

0 votes
import java.util.Comparator;
import java.util.ArrayList;
import java.util.Map.Entry;
import java.util.HashMap;

class CComparator implements Comparator<Entry<String, Integer>> {

    public int compare(Entry<String, Integer> val1, Entry<String, Integer> val2) {
            return val1.getValue().compareTo(val2.getValue());
    }
}
public class MyClass {
    public static void main(String args[]) {
        HashMap<String, Integer> hashmap = new HashMap<>();
  
        hashmap.put("java", 3);
        hashmap.put("c++", 4);
        hashmap.put("c", 1);
        hashmap.put("swift", 5);
        hashmap.put("python", 2);
        
        ArrayList<Entry<String, Integer>> al = new ArrayList<>();
        
        al.addAll(hashmap.entrySet());
        
        al.sort(new CComparator());

        for (Entry<String, Integer> e : al) {
            System.out.println(e.getKey() + " : " + e.getValue());
        }
    }
}
  
  
  
  
/*
run:
  
c : 1
python : 2
java : 3
c++ : 4
swift : 5
  
*/

 



answered Oct 11, 2020 by avibootz

Related questions

2 answers 128 views
1 answer 103 views
2 answers 166 views
1 answer 134 views
1 answer 168 views
...