-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10.java
23 lines (23 loc) · 827 Bytes
/
10.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Solution {
public boolean isMatch(String s, String p) {
int m = s.length();
int n = p.length();
boolean[][] dp = new boolean[m+1][n+1];
dp[0][0] = true;
for (int j = 1; j <=n; j++) {
if (p.charAt(j-1) == '*') dp[0][j] = dp[0][j-2];
}
for (int i = 1; i <= m; i++) {
for (int j = 1; j <= n; j++) {
if (p.charAt(j-1) == s.charAt(i-1) || p.charAt(j-1) == '.') {
dp[i][j] = dp[i-1][j-1];
} else if (p.charAt(j-1) == '*') {
if (s.charAt(i-1) == p.charAt(j-2) || p.charAt(j-2) == '.') {
dp[i][j] = dp[i-1][j] || dp[i][j-2];
} else dp[i][j] = dp[i][j-2];
}
}
}
return dp[m][n];
}
}