leetcode 10 번 문제 (자바 해법)
2452 단어 hard
s
) and a pattern ( p
), 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
인터넷 블 로 거 c 언어의 사고방식 을 참고 하여 뒤에서 앞으로 일치 하 므 로 경 계 를 넘 는 상황 을 고려 할 필요 가 없다.(역 추적 법)
public static boolean isMatch(String s, String p) {
return myMacth(s,s.length()-1,p,p.length()-1);
}
private static boolean myMacth(String s,int i,String p,int j){
System.out.println(i+" "+j);
if(j==-1)
if(i==-1)
return true;
else return false;
if(p.charAt(j)=='*'){// *, * s , , , 。
if(i >= 0 &&(p.charAt(j-1)=='.'||p.charAt(j-1)==s.charAt(i))){
if(myMacth(s,i-1,p,j))
return true;
}
return myMacth(s,i,p,j-2);
}
if(i==-1&&j>=0) return false;// ,s , p 。
if(p.charAt(j)=='.'||p.charAt(j)==s.charAt(i))
return myMacth(s,i-1,p,j-1);
return false;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
LeetCode 42 (1st trial: Time Limit Exceed..)Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.