连续字符字串,遇到连续子串先想滑动窗口
52
力扣https://leetcode-cn.com/problems/MPnaiL/
给定两个字符串 s1
和 s2
,写一个函数来判断 s2
是否包含 s1
的某个变位词。
换句话说,第一个字符串的排列之一是第二个字符串的 子串 。
func checkInclusion(s1 string, s2 string) bool {
var start,end int
plength:=len(s1)
slength:=len(s2)
need := [26]int{}
window := [26]int{}
end = plength
for i:=start;i<end&&i<slength;i++{
window[s2[i]-'a']++
need[s1[i]-'a']++
}
for start<=slength-plength{
if window==need{
return true
}
window[s2[start]-'a']--
if end ==slength{
break
}
window[s2[end]-'a']++
start++
end++
}
return false
}
53
力扣https://leetcode-cn.com/problems/VabMRr/
给定两个字符串 s 和 p,找到 s 中所有 p 的 变位词 的子串,返回这些子串的起始索引。不考虑答案输出的顺序。
变位词 指字母相同,但排列不同的字符串。
func findAnagrams(s string, p string) []int {
var start,end int
var res []int
plength:=len(p)
slength:=len(s)
need := [26]int{}
window := [26]int{}
end = plength
for i:=start;i<end&&i<slength;i++{
window[s[i]-'a']++
need[p[i]-'a']++
}
for start<=slength-plength{
if window==need{
res =append(res,start)
}
window[s[start]-'a']--
if end ==slength{
break
}
window[s[end]-'a']++
start++
end++
}
return res
}
54
力扣https://leetcode-cn.com/problems/wtcaE1/
给定一个字符串 s
,请你找出其中不含有重复字符的 最长连续子字符串 的长度。
//最长子串,第一反应就应该是滑动窗口
func lengthOfLongestSubstring(s string) int {
var start,end,res int
hashmap:=make(map[uint8]int)
for end<len(s){
hashmap[s[end]]++
if hashmap[s[end]]==1{
//第一次出现
tmp:=end - start + 1
if tmp >res{
res = tmp
}
}else{
for start<=end && hashmap[s[end]]>1{
hashmap[s[start]]--
start++
}
}
end++
}
return res
}