Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. 注:直接看题目可能会有些偏差,因为容易认为 needle是一个字符,那就也太容易了,实则,haystack和needle都是字符串(注意是字符串不是数组) 解法思路: 暴力搜索: public class Solution { public int…