当前位置:   article > 正文

统计用户输入的字符串中每个字符出现的次数(使用集合,最后用map集合表示粗来)_#从键盘接受用户的输入字符串, 统计每个字符出现的次数 #249asldjfwoeaa #统计出

#从键盘接受用户的输入字符串, 统计每个字符出现的次数 #249asldjfwoeaa #统计出

统计用户输入的字符串中每个字符出现的次数:

public class map {
    public static void main(String[] args) {
        method01();
    }

    private static void method01() {
        System.out.println("请输入一串随机字母,本次程序将显示一个map类型的集合:");
        String a = new Scanner(System.in).nextLine();
        /**将string转为char数组以便转换为arraylist类*/
        char[] b = a.toCharArray();
//        System.out.println(b);//打桩输出该string转换后的数组


        /**创建各种集合方便调用方法*/
        ArrayList<Character> c = new ArrayList<>();//创建arraylist数组
        HashSet<Character> d = new HashSet<>();//创建
        Map<Object, Integer> ha = new HashMap<>();
        /**将数组转为arraylist集合*/
        for (int i = 0; i < b.length; i++) {
            c.add(b[i]);
        }
        /**将arraylist转换为hashset类,并且去重*/
        for (Character ch:b) {
            d.add(ch);
        }
        /**遍历元素*/
        Iterator<Character> cha = d.iterator();
        char[] e= new char[d.size()-1];
        /**遍历hashset里的元素*/
            while (cha.hasNext()){
                /**记录元素方便给map赋值*/
                Object l = cha.next();
                /**每删除一次arraylist中的某个元素记录一次*/
                int b1 = 0;
            while (c.remove(l)){
                b1++;
                }
            /**给map赋值*/
                ha.put(l,b1);
        }
        System.out.println(ha);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43

结果为:

java请输入一串随机字母,本次程序将显示一个map类型的集合:
dsfsdafsdfsdfsdfdsfsdf
[a, s, d, f]
{a=1, s=7, d=7, f=7}

  • 1
  • 2
  • 3
  • 4
  • 5

一千个读者有一千个哈姆雷特,每个人的想法都不一样,求同存异!!!!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/67229
推荐阅读
相关标签
  

闽ICP备14008679号