题目: Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
题意: 实现strStr()
返回needle在haystack中第一次出现的位置,如果haystack中不存在needle,返回-1.
算法分析: 方法一:
* in Java, there is an API function name indexof(),
* it returns index within this string of the first occurrence of the specifiedsubstring.
方法二:
* 最native的做法
* 解题想法是,从haystack的第一个位置,开始逐个判断是不是子串。如果整个子串都匹配了,那么就返回,否则继续往下挪位置。
* 注意要看haystack剩余的长度跟needle比足不足够多,不够的话也就不用往后比了。
方法三:
* 利用看毛片(KMP)算法,但是对于一个easy难度的题,利用这么费脑的算法没必要吧~~
* 有兴趣的参考《从头到尾彻底理解KMP》http://blog.csdn.net/v_july_v/article/details/7041827
* 代码也在下面给出来。
AC代码: 方法一:
//in Java, there is an API function name indexof(),
//it returns index within this string of the first occurrence of the specifiedsubstring.
public class Solution
{
public int strStr(String haystack, String needle)
{
int i;
i=haystack.indexOf(needle);
return i;
}
}
方法二:
/**
* 最native的做法
* 解题想法是,从haystack的第一个位置,开始逐个判断是不是子串。如果整个子串都匹配了,那么就返回,否则继续往下挪位置。
* 注意要看haystack剩余的长度跟needle比足不足够多,不够的话也就不用往后比了。
*/
public class Solution
{
public int strStr(String haystack, String needle)
{
if(haystack==null || needle==null)
return 0;
if(needle.length() == 0)
return 0;
for(int i=0;
i haystack.length())
return -1;
int m = i;
for(int j=0;
j
方法三:
public int strStr(String haystack, String needle) {
if(haystack==null || needle==null)
return 0;
int h = haystack.length();
int n = needle.length();
if (n > h)
return -1;
if (n == 0)
return 0;
int[] next = getNext(needle);
int i = 0;
while (i <= h - n) {
int success = 1;
for (int j = 0;
j < n;
j++) {
if (needle.charAt(0) != haystack.charAt(i)) {
success = 0;
i++;
break;
} else if (needle.charAt(j) != haystack.charAt(i + j)) {
success = 0;
i = i + j - next[j - 1];
break;
}
}
if (success == 1)
return i;
}
return -1;
}
//calculate KMP array
public int[] getNext(String needle) {
int[] next = new int[needle.length()];
next[0] = 0;
for (int i = 1;
i < needle.length();
i++) {
int index = next[i - 1];
while (index > 0 && needle.charAt(index) != needle.charAt(i)) {
index = next[index - 1];
}
if (needle.charAt(index) == needle.charAt(i)) {
next[i] = next[i - 1] + 1;
} else {
next[i] = 0;
}
}
return next;
}
【[LeetCode][Java] Implement strStr()】
推荐阅读
- 数据结构与算法|【算法】力扣第 266场周赛
- leetcode|今天开始记录自己的力扣之路
- Python|Python 每日一练 二分查找 搜索旋转排序数组 详解
- 【LeetCode】28.实现strstr() (KMP超详细讲解,sunday解法等五种方法,java实现)
- LeetCode-35-搜索插入位置-C语言
- leetcode python28.实现strStr()35. 搜索插入位置
- Leetcode Permutation I & II
- python|leetcode Longest Substring with At Most Two Distinct Characters 滑动窗口法
- LeetCode 28 Implement strStr() (C,C++,Java,Python)
- Python|Python Leetcode(665.非递减数列)