首页 > 其他 > 详细

leetcode 28 Implement Strstr()

时间:2019-05-27 13:48:52      阅读:97      评论:0      收藏:0      [点我收藏+]

两个for

外层for负责处理原字符串

内层for负责处理匹配字符串

 1 class Solution {
 2     public int strStr(String haystack, String needle) {
 3         for(int i=0;; i++){
 4             for(int j=0;; j++){
 5                 if(j == needle.length())
 6                     return i;
 7                 if(i + j == haystack.length())
 8                     return -1;
 9                 if(haystack.charAt(i+j) != needle.charAt(j))
10                     break;
11             }
12         }
13     }
14 }

 

leetcode 28 Implement Strstr()

原文:https://www.cnblogs.com/hwd9654/p/10930101.html

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