-
Notifications
You must be signed in to change notification settings - Fork 19.7k
/
Copy pathWildcardMatching.java
57 lines (48 loc) · 1.73 KB
/
WildcardMatching.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
*
* Author: Janmesh Singh
* Github: https://github.com/janmeshjs
* Problem Statement: To determine if the pattern matches the text.
* The pattern can include two special wildcard characters:
* ' ? ': Matches any single character.
* ' * ': Matches zero or more of any character sequence.
*
* Use DP to return True if the pattern matches the entire text and False otherwise
*
*/
package com.thealgorithms.dynamicprogramming;
public final class WildcardMatching {
private WildcardMatching() {
}
public static boolean isMatch(String text, String pattern) {
int m = text.length();
int n = pattern.length();
// Create a DP table to store intermediate results
boolean[][] dp = new boolean[m + 1][n + 1];
// Base case: an empty pattern matches an empty text
dp[0][0] = true;
// Handle patterns starting with '*'
for (int j = 1; j <= n; j++) {
if (pattern.charAt(j - 1) == '*') {
dp[0][j] = dp[0][j - 1];
}
}
// Fill the DP table
for (int i = 1; i <= m; i++) {
for (int j = 1; j <= n; j++) {
char textChar = text.charAt(i - 1);
char patternChar = pattern.charAt(j - 1);
if (patternChar == textChar || patternChar == '?') {
dp[i][j] = dp[i - 1][j - 1];
} else if (patternChar == '*') {
// '*' can match zero or more characters
dp[i][j] = dp[i - 1][j] || dp[i][j - 1];
} else {
dp[i][j] = false;
}
}
}
// The result is in the bottom-right cell of the DP table
return dp[m][n];
}
}