實現strStr()函數。
返回針(needle)在草垛/針垛(haystack)上第一次出現的索引, 如果不存在其中則返回-1。
其實也就是說字符串str2在字符串str1中第一次出現的索引而已。
Implement strStr().
Returns the index of the first occurrence of needle in haystack,
or -1 if needle is not part of haystack.
class Solution {
public:
bool compare(string s1, int index, string s2) {
int count = 0;
for (int i = 0; i < s2.length(); i++) {
if (s2[i] == s1[i + index])
count++;
}
if (count == s2.length())
return true;
return false;
}
int strStr(string haystack, string needle) {
for (int i = 0; i < haystack.length(); i++) {
if (haystack[i] == needle[0]) {
if (compare(haystack, i, needle))
return i;
}
}
return -1;
}
};
發現超時了……其實在測試之前就看到了別人的答案……驚呆了……這樣都可以?
class Solution {
public:
int strStr(string haystack, string needle) {
return haystack.find(needle);
}
};
也算是長見識了……