Java实现找出数组中重复次数最多的元素以及个数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java实现找出数组中重复次数最多的元素以及个数相关的知识,希望对你有一定的参考价值。
/**数组中元素重复最多的数 * @param array * @author shaobn * @param array */ public static void getMethod_4(int[] array){ Map<Integer, Integer> map = new HashMap<>(); int count = 0; int count_2 = 0; int temp = 0; for(int i=0;i<array.length;i=i+count){ if(i==array.length-1){ temp =1; break; } for(int j=i+1;j<array.length;j++){ if(array[i]==array[j]){ count++; } continue; } if(count>count_2){ count_2 = count; map.put(count_2, array[i]); } } System.out.println(map.get(count_2)); }
int[] array = {1,1,1,5,5,8,9}
以上是关于Java实现找出数组中重复次数最多的元素以及个数的主要内容,如果未能解决你的问题,请参考以下文章
在c#中找出一个数组中出现次数最多的元素,求各种方法,要详细的代码