码迷,mamicode.com
首页 > 其他好文 > 详细

Map的遍历方法及字符计数

时间:2017-09-22 19:12:58      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:计数   取值   map   二次   for   i+1   shm   article   ati   

一、Map遍历的4中方法

public static void main(String[] args) {


  Map<String, String> map = new HashMap<String, String>();
  map.put("1", "value1");
  map.put("2", "value2");
  map.put("3", "value3");
  
  //第一种:普遍使用,二次取值
  System.out.println("通过Map.keySet遍历key和value:");
  for (String key : map.keySet()) {
   System.out.println("key= "+ key + " and value= " + map.get(key));
  }
  
  //第二种
  System.out.println("通过Map.entrySet使用iterator遍历key和value:");
  Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();
  while (it.hasNext()) {
   Map.Entry<String, String> entry = it.next();
   System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
  }
  
  //第三种:推荐,尤其是容量大时
  System.out.println("通过Map.entrySet遍历key和value");
  for (Map.Entry<String, String> entry : map.entrySet()) {
   System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
  }

  //第四种
  System.out.println("通过Map.values()遍历所有的value,但不能遍历key");
  for (String v : map.values()) {
   System.out.println("value= " + v);
  }
 }

 

二、统计字符串中字符的个数

public static void main(String[] args) {
        StringBuilder str=new StringBuilder("aaaaaabbbajjsjjjjj");
        Map<Object,Integer> map=new HashMap<Object,Integer>();
        for(int i=0;i<str.length();i++){
            char t=str.charAt(i);
            int count=0;
            if(map.get(t)==null){
                
                for(int j=i+1;j<str.length();j++){
                    if(t==str.charAt(j)){
                        count++;
                    }
                }
                map.put(t, ++count);
            }
            
        
        }
        for (Object key : map.keySet()) {
               System.out.println("key= "+ key + " and value= " + map.get(key));
        }
    }

 

 
 
转自:http://www.cnblogs.com/kristain/articles/2033566.html

Map的遍历方法及字符计数

标签:计数   取值   map   二次   for   i+1   shm   article   ati   

原文地址:http://www.cnblogs.com/wuxinyiwu/p/7576115.html

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