题目
给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。
示例1
输入: haystack = “hello”, needle = “ll”
输出: 2
示例2
输入: haystack = “aaaaa”, needle = “bba”
输出: -1
思路
暴力搜索,挨个比较。
还有一个效率更高的算法,没看懂,以后明白了再更。
代码
class Solution(object):
def strStr(self, haystack, needle):
"""
:type haystack: str
:type needle: str
:rtype: int
"""
if not needle:
return 0
i = 0
length = len(needle)
while i+length <= len(haystack):
if needle == haystack[i:i+length]:
return i
i += 1
return -1