給定乙個字串 (s
) 和乙個字元模式 (p
)。實現支援'.'
和'*'
的正規表示式匹配。
'.' 匹配任意單個字元。匹配應該覆蓋整個字串 ('*' 匹配零個或多個前面的元素。
s
) ,而不是部分字串。
說明:
示例 1:
輸入:s = "aa"示例 2:p = "a"輸出:false解釋:"a" 無法匹配 "aa" 整個字串。
輸入:s = "aa"示例 3:p = "a*"輸出:true解釋:'*' 代表可匹配零個或多個前面的元素, 即可以匹配 'a' 。因此, 重複 'a' 一次, 字串可變為 "aa"。
輸入:s = "ab"示例 4:p = ".*"輸出:true解釋:".*" 表示可匹配零個或多個('*')任意字元('.')。
輸入:s = "aab"示例 5:p = "c*a*b"輸出:true解釋:'c' 可以不被重複, 'a' 可以被重複一次。因此可以匹配字串 "aab"。
輸入:s = "mississippi"class solution:p = "mis*is*p*."輸出:false
def ismatch(self, s: str, p: str) -> bool:
self.cache = [[none for _ in range(len(p) + 1)] for _ in range(len(s) + 1)]
return self.match(0, 0, s, p)
def match(self, i: int, j: int, s: str, p: str) -> bool:
if self.cache[i][j] is not none:
return self.cache[i][j] is true
if j == len(p):
ans = i == len(s)
else:
cur_match = (i < len(s)) and (s[i] == p[j] or p[j] == '.')
if j + 1 < len(p) and p[j + 1] == '*':
ans = (self.match(i, j + 2, s, p)) or (cur_match and self.match(i + 1, j, s, p))
else:
ans = cur_match and self.match(i+1, j+1, s, p)
self.cache[i][j] = true if ans else false
return ans
Leetcode 正規表示式匹配
給你乙個字串 s 和乙個字元規律 p,請你來實現乙個支援 和 的正規表示式匹配。匹配任意單個字元 匹配零個或多個前面的那乙個元素 所謂匹配,是要涵蓋 整個 字串 s的,而不是部分字串。說明 s 可能為空,且只包含從 a z 的小寫字母。p 可能為空,且只包含從 a z 的小寫字母,以及字元 和 示例...
leetcode正規表示式匹配
暴力求解 動態規劃,如果p j s i 那麼dp i j dp i 1 j 1 意思就是說,如果p的第j個字元和s的第i個字元匹配上了,那麼dp i j 是否為true取決於dp i 1 j 1 如果p j 那麼p j 此時就可以匹配任意字元,情況就和1一樣了,dp i j dp i 1 j 1 如...
正規表示式 匹配
字串 void abtr quint32 ab 表示乙個正規表示式 template class bidirectionaliterator class allocator std allocator sub match bidirectionaliterator class match resul...