首页 > 其他 > 详细

Implement strStr()

时间:2014-02-06 16:22:48      阅读:377      评论:0      收藏:0      [点我收藏+]

Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack.

bubuko.com,布布扣
 1 public class Solution {
 2     public String strStr(String haystack, String needle) {
 3         if(haystack==null) return null;
 4         int len1= haystack.length();
 5         int len2 = needle.length();
 6         if(needle==null||len2==0) return haystack;
 7         int i=0,j=0;
 8         char[] nee = needle.toCharArray();
 9         char[] hay = haystack.toCharArray();
10         int[] next  = getNext(nee,len2);
11         while(i<len1){
12             if(j==-1||hay[i]==nee[j]){
13                 i++;
14                 j++;
15                 if(j==len2){
16                     return haystack.substring(i-j);
17                 }
18             }
19             else{
20                 j= next[j];
21             }
22         }
23         return null;
24     }
25     
26     public int[] getNext(char[]nee,int len){
27         int i=0,j=-1;
28         int []next = new int[len];
29         next[0]=-1;
30         while(i<len-1){
31             if(j==-1||nee[i]==nee[j]){
32                 i++;
33                 j++;
34                 next[i]=j;
35             }
36             else{
37                  j=next[j];
38             }
39         }
40         return next;
41     }
42 }
View Code

Implement strStr()

原文:http://www.cnblogs.com/krunning/p/3538734.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!