LeetCode 28. Implement strStr() 实现strStr()

链接

https://leetcode-cn.com/problems/implement-strstr/description/

要求

实现 strStr() 函数。

给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。

输入: haystack = "hello", needle = "ll"
输出: 2

输入: haystack = "aaaaa", needle = "bba"
输出: -1

相关代码

class Solution(object):
    def strStr(self, haystack, needle):
        if not needle:
            return 0
        elif needle in haystack:
            return len(haystack.split(needle)[0])
        else:
            return -1

心得体会

这个效率相当可观 用split一次定位 比起切片或循环效率要高的多


LeetCode 28. Implement strStr() 实现strStr()_第1张图片
微信图片_20180820210210.png

你可能感兴趣的:(LeetCode 28. Implement strStr() 实现strStr())