思路:
先将数组中的元素存放在hashmap中,其中key是元素,value是出现的次数,在添加之前判断hashmap中是否已经包含了该元素,如果包含了将value+1,如果没有的话直接放在hashmap中
private static void getNumberOfCount(int[] array) {
if (array == null || array.length <= 0) {
return;
}
HashMap<Integer, Integer> hashMap = new HashMap<>();
for (int i = 0; i < array.length; i++) {
if (hashMap.containsKey(array[i])) {------->添加之前先判断,如果存在了value+1
hashMap.put(array[i], hashMap.get(array[i]) + 1);
} else {
hashMap.put(array[i], 1);----->将元素放在hashmap中
}
}
//得到map中所有的键
Set<Integer> keyset = hashMap.keySet();
//创建set集合的迭代器
Iterator<Integer> it = keyset.iterator();
while (it.hasNext()) {
Integer key = it.next();
Integer value = hashMap.get(key);
System.out.println(key + "--total==" + value + "count");
}
}