leetCode28.ImplementstrStr()字符串-创新互联
28. Implement strStr()
创新互联公司是一家专注于网站制作、做网站与策划设计,下冶网站建设哪家好?创新互联公司做网站,专注于网站建设10多年,网设计领域的专业建站公司;建站业务涵盖:下冶等地区。下冶做网站价格咨询:18982081108Implement 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
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
文章题目:leetCode28.ImplementstrStr()字符串-创新互联
文章URL:http://scyanting.com/article/jjces.html