黑马程序员技术交流社区

标题: 集合类统计次数 [打印本页]

作者: 某某帅    时间: 2016-9-19 22:06
标题: 集合类统计次数
(1)利用键盘录入,输入一个字符串
        (2)统计该字符串中各个字符的数量
        (3)如:
                用户输入字符串"If~you-want~to~change-your_fate_I_think~you~must~come-to-the-dark-horse-to-learn-java"
                程序输出结果:-(9)I(2)_(3)a(7)c(2)d(1)e(6)f(2)g(1)h(4)i(1)j(1)k(2)l(1)m(2)n(4)o(8)r(4)s(2)t(8)u(4)v(1)w(1)y(3)~(6)



看好结果 是结果
作者: 不羁的码农    时间: 2016-9-19 23:33
这题主要难点在于使用双列集合存储数据,如果包含就要值加一,否则存一
public class Test1 {
       
        public static void main(String[] args) throws IOException {
                Scanner sc = new Scanner(System.in);
                System.out.println("请输入字符串");
                String line = sc.nextLine();
                TreeMap<Character,Integer> tm = new TreeMap<>();
                char[] chs = line.toCharArray();
                for (char c : chs) {
                        tm.put(c, tm.containsKey(c)?tm.get(c)+1:1);
                }
                Set<Character> keySet = tm.keySet();
                for (Character ch : keySet) {
                        System.out.print(ch+"("+tm.get(ch)+")");
                }
        }
}





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2