28.实现 strStr() 函数。
给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串出现的第一个位置(下标从 0 开始)。如果不存在,则返回 -1 。
思路:KMP,不想手搓KMP吧,好像暴力能过耶,那就indexof直接秒了他不香吗
class Solution {
public int strStr(String haystack, String needle) {
return haystack.indexOf(needle);
}
}