DP Dynamic Planning 10: LetCode 10.Regular Expression Matching
LeetCode 10. Regular Expression Matching
Given an input string (s) and a pattern §, 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).
Note:
s could be empty and contains only lowercase letters a-z. p could be empty and contains only lowercase letters a-z, and characters like . or *.
Example 1:
Input:
s = "aa"
p = "a"
Output: false
Explanation: "a" does not match the entire string "aa".
Example 2:
Input:
s = "aa"
p = "a*"
Output: true
Explanation: '*' means zero or more of the precedeng element, 'a'. Therefore, by repeating 'a' once, it becomes "aa".
Example 3:
Input:
s = "ab"
p = ".*"
Output: true
Explanation: ".*" means "zero or more (*) of any character (.)".
Example 4:
Input:
s = "aab"
p = "c*a*b"
Output: true
Explanation: c can be repeated 0 times, a can be repeated 1 time. Therefore it matches "aab".
Example 5:
Input:
s = "mississippi"
p = "mis*is*p*."
Output: false
버전 1: iteration
public boolean isMatch(String s, String p) {
boolean[][] dp = new boolean[s.length()+1][p.length()+1];
dp[s.length()][p.length()] = true;
for (int i = p.length() - 2; i >= 0; i--) dp[s.length()][i] = (p.charAt(i+1) == '*' && dp[s.length()][i+2]) ? true: false;
for (int i = s.length() - 1; i >= 0; i--) {
for (int j = p.length() - 1; j >= 0; j--) {
if (j < p.length() - 1 && p.charAt(j+1) == '*') {
dp[i][j] = dp[i][j+2];
if (s.charAt(i) == p.charAt(j) || p.charAt(j) == '.') {
dp[i][j] = dp[i][j] || dp[i+1][j];
}
} else if (s.charAt(i) == p.charAt(j) || p.charAt(j) == '.') {
dp[i][j] = dp[i+1][j+1];
} else {
continue;
}
}
}
return dp[0][0];
}
버전 2: recursion
public boolean isMatch(String s, String p) {
boolean[][] dp = new boolean[s.length()][p.length()];
return recursion(s, p, dp, 0, 0);
}
private boolean recursion(String s, String p, boolean[][] dp, int i, int j) {
//base case
boolean res = false;
if (i == s.length() && j == p.length()) return true;
else if (j == p.length()) return false;
else if (i == s.length()) return (j < p.length() - 1 && p.charAt(j+1) == '*' && recursion(s, p, dp, i, j + 2));
else if (dp[i][j] == true) return false;
else {
if (j < p.length() - 1 && p.charAt(j+1) == '*') {
if (s.charAt(i) == p.charAt(j) || p.charAt(j) == '.') {
res = res || recursion(s, p, dp, i + 1, j) || recursion(s, p, dp, i, j + 2);
} else {
res = res || recursion(s, p, dp, i, j + 2);
}
} else if (s.charAt(i) == p.charAt(j) || p.charAt(j) == '.') {
res = res || recursion(s, p, dp, i + 1, j + 1);
} else {}
}
if (res == false) dp[i][j] = true;
//recursion
return res;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.