码迷,mamicode.com
首页 > 编程语言 > 详细

找出两个数组相同的元素,并且对应的个数一样

时间:2017-11-11 14:14:57      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:count   logs   pre   i++   hash   ring   ash   int   get   


	
	/**
	 * 找出两个数组相同的元素,并且对应的个数一样
	 * @param args
	 */
	public static void getSameNumberCount(String[] a, String[] b) {
		Map<String, Integer> map = new HashMap<String, Integer>();
		for (int i = 0; i < a.length; i++) {
			if (!map.containsKey(a[i])) {
				map.put(a[i], 1);
			} else {
				map.put(a[i], map.get(a[i]) + 1);
			}
		}
		
		for (int j = 0; j < b.length; j++) {
			if (map.containsKey(b[j])) {
				System.out.println(b[j]);
				if (map.get(b[j]) > 1) {
					map.put(b[j], map.get(b[j]) - 1);
				} else {
					map.remove(b[j]);
				}
			}
		}
	}
	
	
	public static void main(String[] args) {
		String[] x = {"a","b","c","d"};
		String[] y = {"a","a","b","b","c"};
		getSameNumberCount(y, x);
	}

  

  

找出两个数组相同的元素,并且对应的个数一样

标签:count   logs   pre   i++   hash   ring   ash   int   get   

原文地址:http://www.cnblogs.com/wangxiaowang/p/7818754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!