28.找出字符串中第一个匹配项的下标
给你两个字符串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
仅由小写英文字符组成
思路
为了减少不必要的匹配,我们每次匹配失败即立刻停止当前子串的匹配,对下一个子串继续匹配。如果当前子串匹配成功,
我们返回当前子串的开始位置即可。 如果所有子串都匹配失败,则返回 −1。
下标从零开始,我们可以让字符串 needle 与字符串 haystack 的所有长度为 m 的子串均匹配一次。
两个字符串,外层循环从i+needle.length()
开始,到haystack.length()结束。
内层循环直接遍历needle数组,如果有符合条件的当前字串开始位置的下标i,如果没有停止当前子串的匹配,对下一个子串继续匹配。
最后,如果所有子串都匹配失败,则返回 −1。
综上所述,代码如下:
/**
* @auther Bachelor_HT
* @date 2023/6/12 16:08
* @desc default
*/
public class strStrTest_28 {
public int strStr(String haystack, String needle) {
int haystackLength = haystack.length();
int needleLength = needle.length();
for (int i = 0; i + needleLength <= haystackLength; i++) {
boolean flag = true;
for (int j = 0; j < needleLength; j++) {
//
if (haystack.charAt(i + j) != needle.charAt(j)) {
flag = false;
break;
}
}
if (flag) {
return i;
}
}
return -1;
}
}