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;
}
}
标签:count,mask,最美,long,leecode,字符串,bit,1915,空串 来源: https://blog.csdn.net/hmyqwe/article/details/120587704