10. Regular Expression Matching
Implement regular expression matching with support for'.'
and'*'
.
Thoughts:
Recursion:
if there is a X* in pattern string: can match empty string ( so we jump to matching the rest) or matching current string ( so we compare them one by one)
if current pattern string is NOT a character followed by a * wildcard, just check whether the current char matches the one in the input string.
DP idea: f[i][j]: if s[0..i-1] matches p[0..j-1] 1. if p[j - 1] != '*'
f[i][j] = f[i - 1][j - 1] && s[i - 1] == p[j - 1]
if p[j - 1] == '*', denote p[j - 2] with x
1) "x*" repeats 0 time and matches empty: f[i][j - 2]
2) "x*" repeats >= 1 times and matches "x*x": s[i - 1] == x && f[i - 1][j]
Code T: O(n) S: O(n^2)
Code DP T: O(n^2)
Last updated
Was this helpful?