Horje
find the greatest number in hashmap Code Example
find the greatest number in hashmap
public class NewClass4 {
    public static void main(String[] args)
    {
        HashMap<Integer,Integer>map=new HashMap<Integer, Integer>();
        map.put(1, 50);
        map.put(2, 60);
        map.put(3, 30);
        map.put(4, 60);
        map.put(5, 60);
        int maxValueInMap=(Collections.max(map.values()));  // This will return max value in the Hashmap
        for (Entry<Integer, Integer> entry : map.entrySet()) {  // Itrate through hashmap
            if (entry.getValue()==maxValueInMap) {
                System.out.println(entry.getKey());     // Print the key with max value
            }
        }

    }
}




Java

Related
make recycler view non scrollable Code Example make recycler view non scrollable Code Example
from string to int android studio Code Example from string to int android studio Code Example
Java split string into list Code Example Java split string into list Code Example
take a value from keyboard java Code Example take a value from keyboard java Code Example
javafx scrollpane Code Example javafx scrollpane Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7