実装


28章strstr ()の実装


容易


strStr() .needleおよびhaystackの2つのストリングを与えられて、needlehaystackの部分でないならば、-1またはneedlehaystackの最初の発生のインデックスを返してください.
明確化needleが空の文字列であるときには何を返すべきでしょうか?これはインタビュー中に尋ねる大きな質問です.
この問題のために、needleが空のストリングであるとき、我々は0を返します.これは、Cのstrstr()とJavaのindexOf()と一貫している.

例1 :
Input: haystack = "hello", needle = "ll"
Output: 2

Example 2:

Input: haystack = "aaaaa", needle = "bba"
Output: -1

 

Constraints:

  • 1 <= haystack.length, needle.length <= 104
  • haystack and needle consist of only lowercase English characters.

Python solution

class Solution:
    def strStr(self, haystack: str, needle: str) -> int:



        for i in range(len(haystack)):
            if haystack[i: i + len(needle)] == needle:
                return i
        return -1