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

Leetcode#28Implement strStr()

时间:2015-04-30 01:12:37      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:public   return   字符串   

Implement strStr().

Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.

分析,找字符串haystack中最先出现字符串needle的位置,需要注意的是字符串可能为""的情况的处理


public class Solution {

    public int strStr(String haystack, String needle) {

        if(needle.equals(""))

            return 0;

        int hl=haystack.length();

        int nl=needle.length();

        //if(hl==nl)

        int j=0;

        int i=0;

        for(i=0;i<hl-nl+1;i++)

        {

            for(j=0;j<nl;j++)

                if(haystack.charAt(i+j)!=needle.charAt(j))

                    break;

            if(j==nl)

                return i;

        }

        return -1;

    }

}


Leetcode#28Implement strStr()

标签:public   return   字符串   

原文地址:http://7061299.blog.51cto.com/7051299/1640462

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