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

(LeetCode)Implement strStr()

时间:2015-07-31 18:41:56      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:java   leetcode   

原题如下:

Implement strStr().

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

我的代码:

public class Solution {
    public int strStr(String haystack, String needle) {
        
		if(needle.length()==0)
		{
			return 0;
		}
		if(haystack.length()<needle.length())
		{
			return -1;
		}
		boolean flag = false;
		int mark = -1;
		for(int i =0 ;i<=haystack.length()-needle.length();i++)
		{
			if(needle.charAt(0)==haystack.charAt(i))
			{
				if(haystack.substring(i, i+needle.length()).equals(needle))
				{
					flag = true;
					mark = i;
					break;
				}
			}
		}
		return flag ? mark:-1;
	
    }
}


版权声明:本文为博主原创文章,未经博主允许不得转载。

(LeetCode)Implement strStr()

标签:java   leetcode   

原文地址:http://blog.csdn.net/snchenjt/article/details/47171425

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