Last Updated: 30 Nov, 2020

Maximum Frequency Number

Easy
Asked in companies
QualcommWalmartAdobe

Problem statement

Ninja is given an array of integers that contain numbers in random order. He needs to write a program to find and return the number which occurs the maximum times in the given input. He needs your help to solve this problem.

If two or more elements contend for the maximum frequency, return the element which occurs in the array first i.e. whose index is lowest.

For example,

For 'arr' = [ 1, 2, 3, 1, 2]. you need to return 1.
Input Format:
The first line contains an integer 'T' which denotes the number of test cases or queries to be run.

The first line of each test case contains a single integer ‘N’ denoting the size of the array.

The second line of each test case contains ‘N’ space-separated integers denoting the elements of the array.
Output Format:
For each case, we need to print an integer that has the maximum frequency.

The output of each test case will be printed in a separate line.
Note:
You do not need to input or print anything, and it has already been taken care of. Just implement the given function.
Constraints:
1 <= T <= 5
1 <= N <= 10000
-10 ^ 3 <= |arr| <= 10 ^ 3

Time Limit: 1 sec

Approaches

01 Approach

Here, we can simply run two loops. The outer loop picks all elements one by one and the inner loop finds the frequency of the picked element and compares it with the maximum present so far.

 

Algorithm:

 

  • Declare 4 variables as ‘maxFrequency’ , ‘currentFrequency’ , ‘maxElement’ , ‘currentElement’ and initialize them with 0
  • Run a loop from ‘i’ = ‘0’ to ‘N’
    • Set ‘currentElement’ as arr[i] and ‘currentFrequency’ to 0
    • Run a loop ‘j’ = ‘i’ to ‘N’
      • If ‘arr[j]’ is equal to currentElement
        • Increment currentFrequency by 1
    • If our ‘currentFrequency’ is greater than ‘maxFrequency’
      • Update ‘maxFrequency’ and ‘maxElement' with 'currentFrequency' and ‘currentFrequency’ respectively.
  • Return 'maxElement'

 

02 Approach

We can use hashing and count the frequency of all the elements and simultaneously find the maximum frequency. Now we can iterate through the array and find the first element with the maximum frequency and return that element.

 

Algorithm:

 

  • Declare a unorder map
  • Declare a variable ‘maxFrequency' and initialize it with ‘0’
  • Run a loop from ‘i’ = ‘0’ to ‘N’
    • Update the frequency of current element arr[i]
    • Update the ‘maxFrequency’ till the current element.
  • Declare a variable ‘maxElement’ and initialize it with ‘0’
  • Run a loop from ‘i’ = ‘0’ to ‘N’
    • If the frequency of our current element is equal to the ‘maxFrequency’ computed
      • Update the ‘maxElement’ with the current element and break the loop
  • Return the 'maxElement'