How to find a most recurring number in an array | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How to find a most recurring number in an array

let's say I have an array int[] arr=new arr{1,2,3,1,3,3,4,5,1,2,5,5,4,4,5,5,5}; most recurring number is 5? so how can we slove this?

17th Feb 2017, 8:15 AM
Allwyn Desouza
Allwyn Desouza - avatar
2 Answers
+ 6
sort the array. Then int maxcount=0,var; for(int I=0;I<size;) { int temp=ar[I]; int count=0; while(ar[I]==temp) { count ++; I++; } if(maxcount<count) { maxcount=count; var=ar[i-1]; } } cout<<maxcount<<endl<<var;
17th Feb 2017, 9:37 AM
Megatron
Megatron - avatar
+ 1
half problem solved but how can we count n find out which number is recurring using loops
17th Feb 2017, 9:19 AM
Allwyn Desouza
Allwyn Desouza - avatar