請實現乙個函式用來匹配包括'.'和'*'的正規表示式。模式中的字元'.'表示任意乙個字元,而'*'表示它前面的字元可以出現任意次(包含0次)。 在本題中,匹配是指字串的所有字元匹配整個模式。例如,字串"aaa"與模式"a.a"和"ab*ac*a"匹配,但是與"aa.a"和"ab*a"均不匹配
# -*- coding:utf-8 -*-
class solution:
# s, pattern都是字串
def match(self, s, pattern):
# write code here
if s is none and pattern is none:
return false
return self.pre_mat(s, pattern)
def pre_mat(self, s, pattern):
if s == '' and pattern == '':
return true
if s != '' and pattern == '':
return false
if len(pattern) >= 2 and pattern[1] == '*':
if s != '' and (pattern[0] == '.' or pattern[0] == s[0]):
return self.pre_mat(s[1: ], pattern) or self.pre_mat(s[1: ], pattern[2: ]) or \
self.pre_mat(s, pattern[2: ])
else:
return self.pre_mat(s, pattern[2: ])
if s != '' and pattern[0] == s[0] or pattern[0] == '.' and len(s) != 0:
return self.pre_mat(s[1: ], pattern[1: ])
else:
return false
正規表示式匹配 python
coding utf 8 題目 請實現乙個函式用來匹配包括 和 的正規表示式。模式中的字元 表示任意乙個字元 不包括空字元!而 表示它前面的字元可以出現任意次 包含0次 在本題中,匹配是指字串的所有字元匹配整個模式。例如,字串 aaa 與模式 a.a 和 ab ac a 匹配,但是與 aa.a 和 ...
正規表示式 匹配
字串 void abtr quint32 ab 表示乙個正規表示式 template class bidirectionaliterator class allocator std allocator sub match bidirectionaliterator class match resul...
正規表示式匹配
請實現乙個函式用來匹配包括 和 的正規表示式。模式中的字元 表示任意乙個字元,而 表示它前面的字元可以出現任意次 包含0次 在本題中,匹配是指字串的所有字元匹配整個模式。例如,字串 aaa 與模式 a.a 和 ab ac a 匹配,但是與 aa.a 和 ab a 均不匹配 解法 首先要想到用遞迴處理...