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

28. Implement strStr()

时间:2018-04-16 14:31:50      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:win   lse   ack   null   i++   str   public   pre   style   

 1 static int wing=[]()
 2 {
 3     std::ios::sync_with_stdio(false);
 4     cin.tie(NULL);
 5     return 0;
 6 }();
 7 
 8 class Solution 
 9 {
10 public:
11     int strStr(string haystack, string needle) 
12     {
13         int mlen=haystack.length();
14         int slen=needle.length();
15         if(slen==0)
16             return 0;
17         for(int i=0;i<mlen-slen+1;i++)
18         {
19             int j=0;
20             for(;j<slen;j++)
21             {
22                 if(haystack[i+j]!=needle[j])
23                     break;
24             }
25             if(j==slen)
26                 return i;
27         }
28         return -1;
29     }
30 };

基本算是暴力解法,问题不大。

28. Implement strStr()

标签:win   lse   ack   null   i++   str   public   pre   style   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/8855476.html

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