手动实现.*正则表达式匹配函数
regular expression matching
'.'
Matches any single character.'*'
Matches zero or more of the preceding element.The matching should cover the entire input string (not partial).
Some examples:
isMatch("aa","a") → falseisMatch("aa","aa") → trueisMatch("aaa","aa") → falseisMatch("aa", "a*") → trueisMatch("aa", ".*") → trueisMatch("ab", ".*") → trueisMatch("aab", "c*a*b") → trueisMatch('bbbba', '.*a*a') → trueisMatch('a', '.*..a*') → FalseisMatch('a', 'ab*') → true isMatch('ab', '.*c') → False
思路
使用迭代,当
p[1] != '*'
每次判断p[0] == s[0]
后令s = s[1:], p = p[1:]
当
p[1] == '*'
时特殊处理,注意*
可以代表0到多个*
之前一个的字符当
p[1] == '*'
时,循环判断*
代表多少个*
之前一个的字符,如果s可以匹配*
之后的模式,返回True,否则s = s[1:]
注意处理边界值的情况,
s
和p
为空串时
代码
class Solution(object): def matchChar(self, sc, pc): return sc == pc or pc == '.' def isEndOfStar(self, p): while p != '': if len(p) == 1 or len(p) > 1 and p[1] != '*': return False p = p[2:] return True def isMatch(self, s, p): if p == '': return s == '' if s == '': return self.isEndOfStar(p) if (len(p) > 1 and p[1] != '*') or len(p) == 1: # without * if not self.matchChar(s[0], p[0]): return False else: return self.isMatch(s[1:], p[1:]) else: # with * # try see x* is empty if self.isMatch(s[0:], p[2:]): return True # x* 可以 代表 x 一到多次 while self.matchChar(s[0], p[0]): s = s[1:] if self.isMatch(s, p[2:]): return True if s == '': return self.isEndOfStar(p) return False
本题以及其它leetcode题目代码github地址: