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

[leetcode]Implement strStr()

时间:2014-10-30 09:34:00      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:算法   leetcode   

问题描述:

Implement strStr().

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



代码:

public class Implement_strStr {  //java
	public String strStr(String haystack, String needle) {
		if(haystack == null || needle == null)
            return null;
		int pos = haystack.indexOf(needle);
		if(pos == -1)
			return null;
		return haystack.substring(pos);
    }
}


[leetcode]Implement strStr()

标签:算法   leetcode   

原文地址:http://blog.csdn.net/chenlei0630/article/details/40614525

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