-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathimplement_strStr.py
66 lines (60 loc) · 2.91 KB
/
implement_strStr.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# coding: utf-8
# ## ##
# ##### # ####
# ######### ## #######
# ### ############ ##
# #### # ####### #########
# ########### ######### # ########### ##
# ############# ### #### ## #### ######## ##
# ## ## ## ## ### ######### ######### ### ## # ### ## #
# ## ## ## ### ######## ########## #### ## ### #### ### ##### ####
# ## #### ## ## ######### ########## ######## ##### #### #### ##### #####
# ###### #### ## ## ### ## ### ############ ## ### ## ## ## ### ### ##### ### ##
# #### ##### ## ### ### ###### ############ ## ## ##### ### ## ### ### #####
# ## ## ### ### ### ### ######### ############## ### ## #### ## ### ##### #### ####
# ## ### ## ## ## ### ##### ############## ####### ##### ##### ##### ### ######
# ## ### ## ####### ###### ############### #### ## ## # ###
# ## ###### ####### ##### ################# ###
# ## ### ## ## ### ################# ##
# ## ## ################### ##
# ## ### ######################
# ## # ## #
# ##
# author: RaPoSpectre
# time: 2017-02-28
class Solution(object):
def strStr(self, haystack, needle):
"""
:type haystack: str
:type needle: str
:rtype: int
"""
return self.sunday(haystack, needle)
def sunday(self, s, model):
match = False
ms = 0
me = len(model)
if s == model:
# print '匹配成功,位置: s[{0}]->s[{1}]'.format(0, len(model))
return ms
while 1:
p = s[ms: me]
if model == p:
match = True
# print '匹配成功,位置: s[{0}]->s[{1}]'.format(ms, me)
break
if me >= len(s):
break
sign = s[me]
if sign in model:
posi = model.rfind(sign)
offset = len(model) - posi
ms += offset
me += offset
else:
ms += len(model)
me += len(model)
if match:
return ms
return -1
# print Solution().strStr('123', '42')