题目描述
实现 strStr() 函数。
给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。
示例 1:
输入: haystack = “hello”, needle = “ll”
输出: 2
示例 2:
输入: haystack = “aaaaa”, needle = “bba”
输出: -1
class Solution {
public:
int strStr(string haystack, string needle) {
int len1 = haystack.size();
int len2 = needle.size();
if(len2 == 0)
return 0;
int i = 0,j = 0;
for(i =0;i< len1;i++){
if(j == len2)
return i - len2;
if(haystack[i] == needle[j])
{
j++;
}else {
i = i - j;
j = 0;
}
}
if(j == len2){
return i - len2;
}
return -1;
}
};
来源:CSDN
作者:小太阳012345
链接:https://blog.csdn.net/liujie1234567890/article/details/104572703