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

数组去重复及记录重复个数(以及遍历map的四种方法)

时间:2017-02-22 22:28:47      阅读:1098      评论:0      收藏:0      [点我收藏+]

标签:new   keyset   value   system   i++   logs   字符   不重复的字符串   ash   

private static void check(String[] array) {
        // 字符串数组中,含有不重复的字符串有哪些?每一个重复的个数        
        Map<String,Integer> map = new HashMap<>();        
        for(int i=0;i<array.length;i++){
            if(map.get(array[i]) != null){   
                map.put(array[i], map.get(array[i]) + 1);// value + 1
            } else {
                map.put(array[i],1);
            }
        }

        // ①遍历map
        System.out.println("通过map.keySet()遍历key和value:");
        for(String key:map.keySet()){
            System.out.println("The array is:" + key + "= " + map.get(key));
        }        
        // ②mapSet().iterator()
        System.out.println("通过map.entrySet()的iterator()遍历key和value");
        Iterator<Entry<String, Integer>> it = map.entrySet().iterator();
        while(it.hasNext()){
            Entry<String, Integer> entry = it.next();
            System.out.println("The array is:" + entry.getKey() + "= " + entry.getValue());
        }
        // ③ mapSet() 容量大时推荐
        System.out.println("通过Map.entrySet()遍历key和value");        
        for(Entry<String, Integer> entry:map.entrySet()){
            System.out.println("The array is:" + entry.getKey() + "= " + entry.getValue());
        }        
        //
        System.out.println("通过Map.values()遍历所有的value,但不能遍历key");        
        for(Integer value: map.values()){
            System.out.println("= " + value); 
        }      
    }

 

数组去重复及记录重复个数(以及遍历map的四种方法)

标签:new   keyset   value   system   i++   logs   字符   不重复的字符串   ash   

原文地址:http://www.cnblogs.com/ysloong/p/6431164.html

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