码迷,mamicode.com
首页 > 其他好文 > 详细

Implement strStr()

时间:2015-11-18 19:27:37      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

 1 class Solution {
 2 public:
 3     int strStr(string haystack, string needle) {
 4         if(haystack.empty()&&!needle.empty()) return -1;
 5         int i=0,j=0;
 6         while(i<haystack.size()&&j<needle.size())
 7         if(haystack[i]==needle[j])
 8          {i++;j++;}
 9         else {i=i-j+1;j=0;}
10         if(j>=needle.size())return i-j;
11         else return -1;
12     }
13 };

 

Implement strStr()

标签:

原文地址:http://www.cnblogs.com/daocaorenblog/p/4975408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!