28. Implement strStr()
專業(yè)領(lǐng)域包括做網(wǎng)站、網(wǎng)站制作、商城網(wǎng)站制作、微信營(yíng)銷、系統(tǒng)平臺(tái)開(kāi)發(fā), 與其他網(wǎng)站設(shè)計(jì)及系統(tǒng)開(kāi)發(fā)公司不同,創(chuàng)新互聯(lián)的整合解決方案結(jié)合了幫做網(wǎng)絡(luò)品牌建設(shè)經(jīng)驗(yàn)和互聯(lián)網(wǎng)整合營(yíng)銷的理念,并將策略和執(zhí)行緊密結(jié)合,為客戶提供全網(wǎng)互聯(lián)網(wǎng)整合方案。
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
在haystack中找與needle 第一個(gè)相匹配的位置。如果找不到,返回-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