算法:查找int数组中重复的数据

算法:查找int数组中重复的数据

import java.util.HashMap;

public class Test {
	public static void main(String[] args) {
		Integer[] arr = new Integer[]{1,2,2,3,4,5,6,7,8,8,9,9,0,0};
		HashMap<Integer,Integer> cache = new HashMap<Integer,Integer>();
		for(Integer i:arr) {
			if(cache.get(i) != null) {
				cache.put(i,cache.get(i) + 1);
			} else {
				cache.put(i,1);
			}
		}
		
		for(Integer i:cache.keySet()) {
			System.out.println(i + "出现的次数" + cache.get(i));
		}
	}
}

    原文作者:查找算法
    原文地址: https://blog.csdn.net/wg243964183/article/details/52917220
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞