[LeetCode Python3]10. Regular Expression Matching手把手詳解——正規表示式(一)
10. Regular Expression Matching
採用遞迴的方法
- S1: 不考慮*萬用字元:
def helpMatch(i, j):
# + 遞迴基
if s[i] == p[j] or p[j] == ".":
return helpMatch(i+1, j+1)
else:
return False
- S2: 考慮*萬用字元:
def helpMatch(i, j):
# + 遞迴基
if s[i] == p[j] or p[j] == ".":
if j + 1 < len(p) and p[j + 1] == "*":
return helpMatch(i, j+2) \ # "*"匹配0次
or helpMatch(i+1, j) # "*"匹配1次(由於遞迴,可以代表匹配多次)
else:
return helpMatch(i+1, j+1)
else:
if j + 1 < len(p) and p[j + 1] == "*":
return helpMatch(i, j+2) # "*"匹配0次
else:
return False
- S3: 具體Python3的程式碼:
class Solution:
def isMatch(self, s: str, p: str) -> bool:
memo = {} # 建立備忘錄,避免遞迴中的重複計算
ssize, psize = len(s), len(p)
def helpMatch(i, j):
if (i, j) in memo:
return memo[(i, j)]
# 遞迴基1
if j == psize: # 當j到尾部時,若文字串s也到尾部,則說明恰好匹配
memo[(i, j)] = i == ssize
return memo[(i, j)]
# 遞迴基2
if i == ssize:
# 當i==ssize,即文字串s到尾部,且j不可能為psize(若是則會進入前一個條件語句);
# 此時若模式串剩餘部分為"字元+"*""成對出現(如a*b*c*……)則可匹配,否則不匹配。
if j + 1 < psize and p[j + 1] == '*':
memo[(i, j)] = helpMatch(i, j + 2)
else:
memo[(i, j)] = False
return memo[(i, j)]
if s[i] == p[j] or p[j] == ".":
if j + 1 < psize and p[j + 1] == '*':
memo[(i, j)] = helpMatch(i, j + 2) or helpMatch(i + 1, j) # "*"前字元匹配0次或多次
else:
memo[(i, j)] = helpMatch(i+1, j+1)
else:
if j + 1 < psize and p[j + 1] == '*':
memo[(i, j)] = helpMatch(i, j + 2) # "*"前字元匹配0次
else:
memo[(i, j)] = False
return memo[(i, j)]
return helpMatch(0,0)
相關文章
- Leetcode 10 Regular Expression MatchingLeetCodeExpress
- LeetCode - 解題筆記 - 10- Regular Expression MatchingLeetCode筆記Express
- Leetcode 10. 正規表示式匹配LeetCode
- Python3之正規表示式詳解Python
- 10. 正規表示式匹配
- LeetCode 不只是題解(10.正規表示式匹配[困難])LeetCode
- 詳解正規表示式
- Python正規表示式詳解Python
- Linux正規表示式詳解Linux
- 詳解 Python 正規表示式Python
- 正規表示式(python3)Python
- leetcode - 正規表示式匹配LeetCode
- 正規表示式分組詳解
- MySQL-正規表示式詳解MySql
- Python正規表示式 findall函式詳解Python函式
- Python 正規表示式模組詳解Python
- 正規表示式詳解及實戰
- python爬蟲 正規表示式詳解Python爬蟲
- 正規表示式教程之匹配一組字元詳解字元
- js正規表示式常用函式詳解(續)JS函式
- 正規表示式分組例項詳解
- 正規表示式教程之位置匹配詳解
- 正規表示式(一)
- Oracle中的正規表示式(及函式)詳解Oracle函式
- PHP正規表示式模式修飾符詳解PHP模式
- shell 正規表示式詳細整理
- leetcode題目10之正規表示式匹配LeetCode
- oracle正規表示式regexp_like的用法詳解Oracle
- 正規表示式教程之匹配單個字元詳解字元
- 正規表示式
- 正規表示式.
- 例項程式碼詳解正規表示式匹配換行
- 正規表示式學習教程之回溯引用backreference詳解
- 【正規表示式】常用的正規表示式(數字,漢字,字串,金額等的正規表示式)字串
- 超詳細Python正規表示式操作指南(re使用),一Python
- (一) 爬蟲教程 |正規表示式爬蟲
- 正規表示式教程之操作符及說明詳解
- LeetCode-10. 正規表示式匹配(Python-re包)LeetCodePython