forked from tcandzq/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregular-expression-matching.py
More file actions
83 lines (67 loc) · 2.17 KB
/
regular-expression-matching.py
File metadata and controls
83 lines (67 loc) · 2.17 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# -*- coding: utf-8 -*-
# @File : regular-expression-matching.py
# @Date : 2020-01-26
# @Author : tc
"""
题号 10 正则表达式匹配
给你一个字符串 s 和一个字符规律 p,请你来实现一个支持 '.' 和 '*' 的正则表达式匹配。
'.' 匹配任意单个字符
'*' 匹配零个或多个前面的那一个元素
所谓匹配,是要涵盖 整个 字符串 s的,而不是部分字符串。
说明:
s 可能为空,且只包含从 a-z 的小写字母。
p 可能为空,且只包含从 a-z 的小写字母,以及字符 . 和 *。
示例 1:
输入:
s = "aa"
p = "a"
输出: false
解释: "a" 无法匹配 "aa" 整个字符串。
示例 2:
输入:
s = "aa"
p = "a*"
输出: true
解释: 因为 '*' 代表可以匹配零个或多个前面的那一个元素, 在这里前面的元素就是 'a'。因此,字符串 "aa" 可被视为 'a' 重复了一次。
示例 3:
输入:
s = "ab"
p = ".*"
输出: true
解释: ".*" 表示可匹配零个或多个('*')任意字符('.')。
示例 4:
输入:
s = "aab"
p = "c*a*b"
输出: true
解释: 因为 '*' 表示零个或多个,这里 'c' 为 0 个, 'a' 被重复一次。因此可以匹配字符串 "aab"。
示例 5:
输入:
s = "mississippi"
p = "mis*is*p*."
输出: false
"""
class Solution:
def isMatch(self, s: str, p: str) -> bool:
if not s or not p:
return False
return self.isMatchCore(s,p,0,0)
def isMatchCore(self,s,p,i,j):
if i <= len(s)-1 and j == len(p):
return False
if i == len(s) and j == len(p):
return True
if j+1 <= len(p)-1 and p[j+1] == '*':
if s[i] == p[j] or (p[j] == '.' and i <= len(s) - 1):
return self.isMatchCore(s, p,i+1, j+2) or self.isMatchCore(s,p,i+1,j) or self.isMatchCore(s,p,i,j+2)
else:
return self.isMatchCore(s, p, i, j+2)
if i <= len(s) - 2 and j <= len(p) - 2:
if s[i] == p[j] or (p[j] == '.' and i <= len(s)-1):
return self.isMatchCore(s,p,i+1,j+1)
return False
if __name__ == '__main__':
s = "ab"
p = ".*c"
solution = Solution()
print(solution.isMatch(s,p))