【Leetcode-1002】哈希表-查找常用字符

2020-10-14 打卡题-查找重复字符

给定仅有小写字母组成的字符串数组 A,返回列表中的每个字符串中都显示的全部字符(包括重复字符)组成的列表。
例如,如果一个字符在每个字符串中出现 3 次,但不是 4 次,则需要在最终答案中包含该字符 3 次。
你可以按任意顺序返回答案。

示例 1:
输入:["bella","label","roller"]
输出:["e","l","l"]

示例 2:
输入:["cool","lock","cook"]
输出:["c","o"]

提示:
1 <= A.length <= 100
1 <= A[i].length <= 100
A[i][j] 是小写字母

  • 题解:利用哈希方式记录每个字符串在每个字符上的次数,最后根据最小次数输出字符即可


    图示
public class CommonChars {
    public List commonChars(String[] A) {
        List result = new ArrayList<>();
        int mark[][] = new int[A.length][26];
        for (int i = 0; i < A.length; i++) {
            for (int j = 0; j < A[i].length(); j++) {
                mark[i][A[i].charAt(j)-'a'] +=1;
            }
        }
//        for (int i = 0; i < A.length; i++) {
//            for (int j = 0; j < 26; j++) {
//                System.out.print(mark[i][j]+" ");
//            }
//            System.out.println();
//        }
        for (int i = 0; i < 26; i++) {
            int min_cnt = Integer.MAX_VALUE;
            boolean cnt_flag = true;
            for (int j = 0; j < A.length; j++) {
                if(mark[j][i] == 0){
                    cnt_flag = false;
                    break;
                }
                else{
                    min_cnt = Math.min(min_cnt,mark[j][i]);
                }
            }
            if(min_cnt > 0 && cnt_flag){
                for (int j = 0; j < min_cnt; j++) {
                    result.add(String.valueOf((char) (i + 'a')));
                }
            }
        }
        return result;
    }
}

你可能感兴趣的:(【Leetcode-1002】哈希表-查找常用字符)