首页 > 其他 > 详细

[LC] 28. Implement strStr()

时间:2019-11-10 12:57:17      阅读:77      评论:0      收藏:0      [点我收藏+]

Implement strStr().

Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.

Example 1:

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

Example 2:

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

Clarification:

What should we return when needle is an empty string? This is a great question to ask during an interview.

For the purpose of this problem, we will return 0 when needle is an empty string. This is consistent to C‘s strstr() and Java‘s indexOf().

 
Time: O(M * N)
class Solution(object):
    def strStr(self, haystack, needle):
        """
        :type haystack: str
        :type needle: str
        :rtype: int
        """
        if not needle:
            return 0
        if not haystack:
            return -1
        len_haystack, len_needle = len(haystack), len(needle)
        for i in range(0, len_haystack - len_needle + 1):
            cur = haystack[i]
            if cur == needle[0]:
                j = 0
                while j < len_needle:
                    if haystack[i + j] != needle[j]:
                        break
                    j += 1
                if j == len_needle:
                    return i
        return -1
            
        

 

[LC] 28. Implement strStr()

原文:https://www.cnblogs.com/xuanlu/p/11829275.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!