leecode-1915-最美子字符串的数目

leecode-1915-最美子字符串的数目
leecode-1915-最美子字符串的数目

class Solution {
    public long wonderfulSubstrings(String word) {
        // 记录结果
        long res = 0;
        // 记录截止遍历位每一种 bit mask 出现的次数 数组大小为 2^10 
        long count[]  = new long[1024];
        // 初始位置 bit mask 为 0,即空串
        int mask = 0;
        // 表示空串对应 bit mask 出现 1 次
        count[0] = 1;
        // 从头到尾循环遍历字符串
        for (int i = 0; i < word.length(); ++i) {
            // 翻转当前字符对应 bit 位,得到当前字符串前缀 bit mask
            mask ^= 1 << (word.charAt(i) - 'a');
            // 对应全为偶数的结果集
            res += count[mask];
            // a 到 j 一次翻转bit位,对应仅有一个奇数的结果集
            for (int j = 0; j < 10; ++j) {
                res += count[mask ^ (1 << j)];
            }
            count[mask]++;
        }
        return res;
    }
}

leecode-1915-最美子字符串的数目

上一篇:Verilog练习:HDLBits笔记8


下一篇:最大的异或(剑指offer-67)