忽略字母大小写情况下统计字符出现的次数

Posted informationgod

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了忽略字母大小写情况下统计字符出现的次数相关的知识,希望对你有一定的参考价值。

package lsh.element.algrithom;

import java.util.Scanner;

public class CountLetterIgnoreCase {
    
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.println("请输入带有字母的字符串: ");
        String str = input.nextLine();
        int[] countLetters = countLetters(str.toLowerCase());
        for (int i = 0; i < countLetters.length; i++) {
            System.out.println((char)(‘a‘+i)+" 出现了 "+countLetters[i]+" 次;");
        }
        input.close();
    }

    /**
     * 巧妙地利用了被处理对象内部的结构关系
     * @param str
     * @return
     */
    public static int[] countLetters(String str) {
        int[] counts = new int[26];
        for (char e : str.toCharArray()) {
            if(Character.isLetter(e)) {
                counts[e - ‘a‘]++;
            }
        }
        return counts;
    }
    
}

 

以上是关于忽略字母大小写情况下统计字符出现的次数的主要内容,如果未能解决你的问题,请参考以下文章

怎么统计输入的一个字符串中每个字母出现的次数?

统计一个字符串中大写字母字符,小写字母字符,数字字符出现的次数,其他字符出现的次数。

统计一个字符串中大写字母字符,小写字母字符,数字字符出现的次数。(不考虑其他字符)

统计a所指字符串中每个字母在字符串中出现的次数(统计时不区分大小写),并将出现次数最高的字母输出(若有多个,输出一个即可)

C语言编程:输入一串英文字母,统计每个字母(不区分大小写)出现的次数

python统计字符串中数字,大写字母,小写字母出现的次数