LeetCode,leetcodeoj
題目連結:Implement strStr()
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
Update (2014-11-02):
The signature of the function had been updated to return the index instead of the pointer. If you still see your function signature returns a char * or String, please click the reload button to reset your code definition.
這道題的要求是實現strStr()函數,返回needle在haystack中第一次出現的位置,如果沒找到,這返回-1。
這道題的直接思路就是暴力尋找,就是一個字元一個字元地進行匹配。不多說了,如果有興趣,可以去研究這幾個O(m+n)的演算法:Rabin-Karp演算法、KMP演算法和Boyer-Moore演算法。
時間複雜度:O(mn)
空間複雜度:O(1)
1 class Solution 2 { 3 public: 4 int strStr(char *haystack, char *needle) 5 { 6 int l1 = strlen(haystack), l2 = strlen(needle); 7 for(int i = 0, j; i <= l1 - l2; ++ i) 8 { 9 for(j = 0; j < l2 && haystack[i + j] == needle[j]; ++ j);10 if(j == l2)11 return i;12 }13 return -1;14 }15 };
轉載請說明出處:LeetCode --- 28. Implement strStr()