+ 1
What data structure suits for finding frequency of each element in integer array?
Array programming
5 Réponses
+ 3
alagammai uma Approach: Create an extra space of size n, as elements of the array is in the range 1 to n. Use the extra space as HashMap. Traverse the array and update the count of the current element. Finally, print the frequencies of the HashMap along with the indices.
Algorithm:
Create an extra space of size n (hm), use it as a HashMap.
Traverse the array from start to end.
For every element update hm[array[i]-1], i.e. hm[array[i]-1]++
Run a loop from 0 to n and print hm[array[i]-1] along with the index i
+ 4
Approach
----------------------------
In this program, we need to count the occurrence of each unique element present in the array. One of the approach to resolve this problem is to maintain one array to store the counts of each element of the array. Loop through the array and count the occurrence of each element and store it in another array fr.
In the above array, 1 has appeared 1 time, so, the frequency of 1 is 1. Similarly, 2 has appeared 4 times. The frequency of 2 is 4 and so on.
+ 3
alagammai uma yes you can use .
0
Can we use HashMap ?if so how?
0
I will add the integers to the HashMap but how could I add their count?