Answers for "how to take the frequency of the elements in hashmap in java"

0

frequency count in java using hashmap

static void countFreq(int arr[], int n)
    {
        Map<Integer, Integer> mp = new HashMap<>();
 
        // Traverse through array elements and
        // count frequencies
        for (int i = 0; i < n; i++)
        {
            if (mp.containsKey(arr[i]))
            {
                mp.put(arr[i], mp.get(arr[i]) + 1);
            }
            else
            {
                mp.put(arr[i], 1);
            }
        }
        // Traverse through map and print frequencies
        for (Map.Entry<Integer, Integer> entry : mp.entrySet())
        {
            System.out.println(entry.getKey() + " " + entry.getValue());
        }
    }
Posted by: Guest on August-15-2021

Code answers related to "how to take the frequency of the elements in hashmap in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language