Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. 解题: 本题为典型的KMP算法考察题,KMP算法描述为: 设主串S,匹配串P,i为S的索引下标,j为P的索引下标,初始i和j设置为0. 在i小于S的长度和j小于P的长度时,开始循环: 1.比较S[i]和P[j]是否相同: 2.如果相同则i++,j+…