leetcode 28. 实现 strStr()

给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。

题目很简单,用java自带的indexOf即可

	  public int strStr(String haystack, String needle) {
		  if(haystack == null ){
			  return -1;
		  }
		  if(needle == null){
			  return 0;
		  }
		  return haystack.indexOf(needle);

	  }

 

你可能感兴趣的:(算法编程)