题解 | #统计字符串中字母出现次数# JAVA30

统计字符串中字母出现次数

http://www.nowcoder.com/practice/83350872bdb5406fa706895d5efb1c55

import java.util.ArrayList;
import java.util.Collections;

public class Main {
    public static void main(String[] args) {
        String string = "H e l l o ! n o w c o d e r";
        Scanner scanner= new Scanner(System.in);
        String word = scanner.next();
        scanner.close();
        System.out.println(check(string, word));
    }

    public static int check(String str, String word) {
        //write your code here......
        ArrayList<Character> list = new ArrayList<>();
        for (int i = 0; i < str.length(); i++) {
            list.add(str.charAt(i));
        }
        return Collections.frequency(list, word.charAt(0));
    }
    
    public static int check2(String str, String word) {
        //write your code here......
        int cnt = 0;
        for (int i = 0; i < str.length(); i++) {
            if(str.charAt(i) == word.charAt(0)) {
                cnt++;
            }
        }
        return cnt;
    }
    
    public static int check1(String str, String word) {
        //write your code here......
        int cnt = 0;
        for(int i = 0; i < str.length(); i++) {
            char ch = str.charAt(i);
            String s = new String(ch+"");
            if(s.equals(word)) {
                cnt++;
            }
        }
        return cnt;
    }
}
全部评论

相关推荐

求offer的大角牛:不吃香菜
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务