题目链接:https://leetcode.com/problems/implement-strstr/description/ 题目大意:字符串匹配,从字符串中,找到给定字符串第一次出现的位置下标,并返回. 法一:暴力,两个for循环,逐一比较每一个可能的字符串,一旦找到,则返回.代码如下(耗时508ms->10ms): public int strStr(String haystack, String needle) { int res = -1, len_h = haystack.leng…