您好,登錄后才能下訂單哦!
28. Implement strStr()
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
在haystack中找與needle 第一個相匹配的位置。如果找不到,返回-1。
代碼如下:
class Solution { public: int strStr(string haystack, string needle) { if(haystack.size() == 0 && needle.size() == 0) return 0; if(needle.size() == 0) return 0; if(haystack.size() < needle.size()) return -1; for(int i = 0;i < haystack.size() - needle.size() + 1;i++) { bool flag = true; if(needle[0] == haystack[i]) { int j = 0; for(; j < needle.size();j++) { if(needle[j] != haystack[i+j]) { flag = false; break; } } if(flag) return i; } } return -1; } };
2016-08-11 01:02:49
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。