Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8632581
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T09:22:21+00:00 2026-06-12T09:22:21+00:00

Possible Duplicate: How to sort a Map<Key, Value> on the values in Java? I

  • 0

Possible Duplicate:
How to sort a Map<Key, Value> on the values in Java?

I have a HashMap as following:

 Key Value
  A    5
  B    3
  C    10
  D    4
  E    1
  F    11

I need to find the one with highest value, what do you suggest me to do? should I sort them and get the first one or there is any other faster way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T09:22:22+00:00Added an answer on June 12, 2026 at 9:22 am

    This is much more easily solved by using a SortedMap and passing in a Comparator for the values:

    final Map<String, Integer> map = new HashMap<String, Integer>();
    map.put("A", 5);
    map.put("B", 3);
    map.put("C", 10);
    map.put("D", 4);
    map.put("E", 1);
    map.put("F", 11);
    map.put("G", 11);
    map.put("H", 10);
    
    TreeMap<String, Integer> sorted = new TreeMap<String, Integer>(new Comparator<String>() {
      // Note: this comparator imposes orderings that are inconsistent with equals.
      @Override
      public int compare(String a, String b) {
        if (map.get(a) >= map.get(b)) {
          return -1;
        } else {
          return 1;
        } // returning 0 would merge keys
      }
    });
    sorted.putAll(map);
    
    
    Entry<String, Integer> first = sorted.firstEntry();
    System.out.println("Highest value: " + first.getValue() + is for key: " + first.getKey());
    
    // If duplicate keys are never a concern, you can stop here.  Otherwise, one may 
    // continue below to find all keys that may be mapped to an equal highest value:
    List<String> others = new LinkedList<String>();
    for (Entry<String, Integer> entries : sorted.entrySet()) {
      if (entries.getValue().equals(first.getValue())) {
        others.add(entries.getKey());
      } else {
        break;
      }
    }
    
    System.out.println("All keys mapped to this highest value: " + others);
    

    Prints out:

    Highest value: 11 is for key: G
    All keys mapped to this highest value: [G, F]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How to sort a Map<Key, Value> on the values in Java? Here's
Possible Duplicate: How to sort a Map<Key, Value> on the values in Java? I
Possible Duplicate: How to sort a Map<Key, Value> on the values in Java? Dear,
Possible Duplicate: How to sort a Map<Key, Value> on the values in Java? I
Possible Duplicate: Java Ordered Map I have list of product object in the HashMap<Integer,Product>
Possible Duplicate: Python: Sort a dictionary by value I need to sort by values
Possible Duplicate: php sort array by sub-value I have a multidimensional array like the
Possible Duplicate: Sort by key of dictionary inside a dictionary in Python I have
Possible Duplicate: Sort an array by a child array's value in PHP I have
Possible Duplicate: Natural Sort Order in C# I have a list with a lot

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.