找出字符串中第一个匹配项的下标
给你两个字符串 haystack
和 needle
,请你在 haystack
字符串中找出 needle
字符串的第一个匹配项的下标(下标从 0 开始)。如果 needle
不是 haystack
的一部分,则返回 -1
。
示例 1:
输入:haystack = "sadbutsad", needle = "sad"
输出:0
解释:"sad" 在下标 0 和 6 处匹配。
第一个匹配项的下标是 0 ,所以返回 0 。
示例 2:
输入:haystack = "leetcode", needle = "leeto"
输出:-1
解释:"leeto" 没有在 "leetcode" 中出现,所以返回 -1 。
提示:
1 <= haystack.length, needle.length <= 104
haystack
和needle
仅由小写英文字符组成
方法一:
暴力破解,如果匹配不了就返回,能做,但是不推荐,因为有更好的。
方法二:
KMP算法,是时候拿起你们的数据结构与算法书了,这个算法无论在那个版本的书中都是重点。如果想要温习知识的可以看看这个视频:
// KMP算法
func strStr(haystack string, needle string) int {
nBytes := []byte(needle)
hBytes := []byte(haystack)
//获取next数组
next := buildNext28(nBytes)
i := 0 // 主串下标
j := 0 // 子串下标
for i < len(hBytes) {
if nBytes[j] == haystack[i] {
j++
i++
} else {
if j > 0 {
j = next[j-1]
} else {
i++
}
}
if j == len(nBytes) {
return i - j
}
}
return -1
}
// next
func buildNext28(a []byte) []int {
next := make([]int, 1, len(a))
i := 1 // 当前下标
prifixlen := 0 // 当前共同前缀长度
for i < len(a) {
if a[prifixlen] == a[i] {
prifixlen++
next = append(next, prifixlen)
i++
} else {
if prifixlen == 0 {
next = append(next, 0)
i++
} else {
prifixlen = next[prifixlen-1]
}
}
}
return next
}
还有一种是nextval数组,能更好的优化KMP算法,感兴趣的去学习吧。
标签:---,下标,++,needle,next,力扣,Go,prifixlen,haystack From: https://blog.csdn.net/weixin_52025712/article/details/137250881