A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© life写实 中级黑马   /  2016-8-9 22:09  /  234 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

取出一个字符串中字母出现的次数。如:字符串:"abcdekka27qoq",输出格式为:a(2)b(1)k(2)...

1 个回复

倒序浏览
class class16{
        private static void gett(String s)
        {
                Map<Character,Integer> map = new HashMap<Character,Integer>();
                for(char c:s.toCharArray())
                {
                        if(map.containsKey(c))
                        {
                                int temp = map.get(c);
                                temp++;
                                map.put(c, temp);
                        }
                        else
                        {
                                map.put(c, 1);
                        }
                }
                Set<Entry<Character,Integer>> set = map.entrySet();
                Iterator<Entry<Character, Integer>> it = set.iterator();
                while(it.hasNext())
                {
                        Entry<Character,Integer> entry = (Entry<Character, Integer>) it.next();
                        System.out.print(entry.getKey()+"("+entry.getValue()+")");
                }
        }
        public static void main(String... args){
                gett("abcdekka27qoq");
        }
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马