leetcode -- Implement strStr () -- KMP 는 이해 하기 어렵 지만, 시험 을 많이 보지 못 하면 알 면 된다

3190 단어 LeetCode
https://leetcode.com/problems/implement-strstr/
KMP 알고리즘 을 사용 하 는 것 이 가장 좋다.이해 하기 어려워, 알 면 돼.인 터 뷰 는 이 정도 까지 안 물 어 봐 요?
ref: http://wiki.jikexueyuan.com/project/kmp-algorithm/define.html
이 코드 참조http://www.geeksforgeeks.org/searching-for-patterns-set-1-naive-pattern-searching/ 폭력 법http://codesays.com/2014/solution-to-implement-strstr-by-leetcode/
class Solution(object):

    def computeLPS(self, pat, M, lps):

        len = 0
        lps[0]
        i = 1
        while i < M:

            if pat[i] == pat[len]:
                len += 1
                lps[i] = len
                i += 1
            else:
                if len != 0:
                    len = lps[len - 1] # recursive
                else:
                    lps[i] = 0
                    i += 1

    def strStr(self, haystack, needle):
        """ :type haystack: str :type needle: str :rtype: int """
        if not needle:
            return 0

        len_pat = len(needle)
        len_txt = len(haystack)
        lps = [0] * len_pat
        self.computeLPS(needle, len_pat, lps)

        i, j = 0, 0

        while i < len_txt:
            if needle[j] == haystack[i]:
                i += 1
                j += 1

            if j == len_pat:
                return i - len_pat
            elif i < len_txt and needle[j] != haystack[i]:
                if j!=0 :
                    j = lps[j - 1]
                else:
                    i +=1
        return -1

좋은 웹페이지 즐겨찾기