Wildcard Matching
Problem Statement
Given an input string (s
) and a pattern (p
), implement wildcard pattern matching with support for '?'
and '*'
where:
'?'
Matches any single character.'*'
Matches any sequence of characters (including the empty sequence).
The matching should cover the entire input string (not partial).
Example 1:
Input: s = "aa", p = "a"
Output: false
Explanation: "a" does not match the entire string "aa".
Example 2:
Input: s = "aa", p = "*"
Output: true
Explanation: '*' matches any sequence.
Example 3:
Input: s = "cb", p = "?a"
Output: false
Explanation: '?' matches 'c', but the second letter is 'a', which does not match 'b'.
Constraints:
0 <= s.length, p.length <= 2000
s
contains only lowercase English letters.p
contains only lowercase English letters,'?'
or'*'
.
Code
Python Code
class Solution:
def isMatch(self, s: str, p: str) -> bool:
# Initialize the pointers for the input string and the pattern
i = 0
j = 0
# Initialize the pointers for the last character matched and the last
# '*' encountered in the pattern
last_match = 0
star = -1
# Loop through the input string and the pattern
while i < len(s):
# Check if the current characters in the input string and the pattern
# match, or if the pattern character is a '?'
if j < len(p) and (s[i] == p[j] or p[j] == '?'):
# Move the pointers for the input string and the pattern forward
i += 1
j += 1
# Check if the current pattern character is a '*'
elif j < len(p) and p[j] == '*':
# Store the current positions of the pointers for the input string
# and the pattern
last_match = i
star = j
# Move the pointer for the pattern forward
j += 1
# If none of the above conditions are met, check if we have encountered
# a '*' in the pattern previously
elif star != -1:
# Move the pointer for the pattern back to the last '*'
j = star + 1
# Move the pointer for the input string to the next character
# after the last character matched
i = last_match + 1
# Move the pointer for the last character matched forward
last_match += 1
# If none of the above conditions are met, the input string and the
# pattern do not match
else:
return False
# Loop through the remaining characters in the pattern and check if they
# are all '*' characters
while j < len(p) and p[j] == '*':
j += 1
# Return True if all the characters in the pattern have been processed,
# False otherwise
return j == len(p)