首页 > 代码库 > Java实现找出数组中重复次数最多的元素以及个数
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实现找出数组中重复次数最多的元素以及个数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。