LeetCode,leetcodeoj

來源:互聯網
上載者:User

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()

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.