Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,955 questions

51,897 answers

573 users

How to count frequency of each element in an array in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        int[] array = { 4, 1, 2, 8, 9, 5, 5, 1, 7, 8, 8 };
        int[] frequency = new int[10];
       
        for (int i = 0; i < array.length; i++) {
            frequency[array[i]]++;
        }
      
        for (int i = 0; i < 10; i++) {
            if (frequency[i] != 0)
                System.out.println(i + ": - " + frequency[i] + " times");
        }
    }
}



 
/*
run:
     
1: - 2 times
2: - 1 times
4: - 1 times
5: - 2 times
7: - 1 times
8: - 3 times
9: - 1 times
       
*/

 



answered Jul 29, 2021 by avibootz

Related questions

1 answer 92 views
1 answer 134 views
1 answer 197 views
1 answer 156 views
1 answer 178 views
1 answer 145 views
...