leetcode-----28. 实现 strStr()
Posted 景云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-----28. 实现 strStr()相关的知识,希望对你有一定的参考价值。
代码
class Solution {
public:
int strStr(string haystack, string needle) {
int n = haystack.size();
int m = needle.size();
for (int i = 0; i < n - m + 1; ++i) {
bool flag = true;
for (int j = 0; j < m; ++j) {
if (haystack[i + j] != needle[j]) {
flag = false;
break;
}
}
if (flag) {
return i;
}
}
return -1;
}
};
以上是关于leetcode-----28. 实现 strStr()的主要内容,如果未能解决你的问题,请参考以下文章
python刷LeetCode:28. 实现 strStr()