10. Regular Expression Matching
Implement regular expression matching with support for'.'and'*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the
entire
input string (not partial).
The function prototype should be:
bool isMatch(const char *s, const char *p)
Some examples:
isMatch("aa","a") → false
isMatch("aa","aa") → true
isMatch("aaa","aa") → false
isMatch("aa", "a*") → true
isMatch("aa", ".*") → true
isMatch("ab", ".*") → true
isMatch("aab", "c*a*b") → trueThoughts:
similar to 44. Wildcard Matching
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)
Special Thanks Pale Blue Dot's solution
Last updated
Was this helpful?