44 Wildcard Matching
Problem:
Implement wildcard pattern matching with support for '?' and '*'.
'?' Matches any single character.
'*' Matches any sequence of characters (including the empty sequence).
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", "*") → true
isMatch("aa", "a*") → true
isMatch("ab", "?*") → true
isMatch("aab", "c*a*b") → falseSolutions:
DP is the easy way to think. match[i][j] means for String s [0, i) using pattern p [0, j) if it's matchable. then match[i][j] = match[i-1][j-1] if p.charAt(j) == s.charAt(i) || p.charAt(j) == '?' match[i][j] = match[i-1][j] || match[i][j-1] if p.charAt(j) == '*'
But DP is not fast enough to solve this.
Last updated