c_cpp strstr.cpp
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp strstr.cpp相关的知识,希望对你有一定的参考价值。
class Solution {
public:
int strStr(const char *source, const char *target) {
// check if source or target is nullptr
if (source == nullptr || target == nullptr) {
return -1;
}
string s(source), t(target);
if (t.size() == 0) {
return 0;
}
for (int i = 0; i < s.size() - t.size() + 1; i++) {
if (s[i] != t[0]) {
continue;
}
for (int j = 1; j < t.size(); j++) {
if (s[i + j] != t[j]) {
break;
}
if (j == t.size() - 1) {
return i;
}
}
}
return -1;
}
};
以上是关于c_cpp strstr.cpp的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 200.岛屿数量
c_cpp 127.单词阶梯
c_cpp MOFSET
c_cpp MOFSET
c_cpp 31.下一个排列
c_cpp string→char *