028 Implement strStr
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
思路
找出haystack字符串中,needle字符串第一次出现的索引号。
利用两层循环可以得到想要的结果,因为题目难度所限,对于O(n*m)的时间复杂度也没有报超时错误。
|
|
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
找出haystack字符串中,needle字符串第一次出现的索引号。
利用两层循环可以得到想要的结果,因为题目难度所限,对于O(n*m)的时间复杂度也没有报超时错误。
|
|