实现 strStr() 函数。
给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。
示例 1:
输入: haystack = "hello", needle = "ll"
输出: 2
示例 2:
输入: haystack = "aaaaa", needle = "bba"
输出: -1
思路:
字符串为0 返回0
主字符串长度小于副字符串长度 返回-1
比较字符串 如果位置不同就break 然后返回起始位置
代码:
class Solution{
public:
int strStr(string haystack, string needle){
if (needle.empty()) return 0;
int m = haystack.size(), n = needle.size();
if(m < n ) return -1;
for(int i = 0; i <= m - n; ++i){
int j = 0;
for(j = 0; j < needle.size(); ++j){
if(haystack[i+j] != needle[j]) break;
}
if(j == n) return i;
}
return -1;
}
}