给定一个字符串 s 和一个非空字符串 p,找到 s 中所有是 p 的字母异位词的子串,返回这些子串的起始索引。
字符串只包含小写英文字母,并且字符串 s 和 p 的长度都不超过 20100。
说明:
字母异位词指字母相同,但排列不同的字符串。
不考虑答案输出的顺序。
示例 1:
输入:
s: “cbaebabacd” p: “abc”
输出:
[0, 6]
解释:
起始索引等于 0 的子串是 “cba”, 它是 “abc” 的字母异位词。
起始索引等于 6 的子串是 “bac”, 它是 “abc” 的字母异位词。
示例 2:
输入:
s: “abab” p: “ab”
输出:
[0, 1, 2]
解释:
起始索引等于 0 的子串是 “ab”, 它是 “ab” 的字母异位词。
起始索引等于 1 的子串是 “ba”, 它是 “ab” 的字母异位词。
起始索引等于 2 的子串是 “ab”, 它是 “ab” 的字母异位词。
class Solution {
public List<Integer> findAnagrams(String s, String p) {
List<Integer> list = new ArrayList<>();
if (s == null || p == null || s.length() < p.length())
return list;
char[] sChar=s.toCharArray();
char[] pChar=p.toCharArray();
int[] curAtoZ=new int[26];
int[] atoz=new int[26];
int slength=p.length();
int move=sChar.length-pChar.length;
for(int i=0;i<slength;i++){
curAtoZ[sChar[i]-'a']++;
atoz[pChar[i]-'a']++;
}
for(int i=0;i<move;i++){
if(Arrays.equals(curAtoZ,atoz)){
list.add(i);
}
curAtoZ[s.charAt(i) - 'a']--;
curAtoZ[sChar[i+p.length()] - 'a']++;
if(i==move-1){
if(Arrays.equals(curAtoZ,atoz)){
list.add(i+1);
}
}
}
return list;
}
}