LeetCode 스크랩북 Word Break II
Return all such possible sentences.
For example, given s =
"catsanddog"
, dict = ["cat", "cats", "and", "sand", "dog"]
. A solution is
["cats and dog", "cat sand dog"]
. 이 문제는 모든 결과를 요구하는데, 분명히 귀속될 것이다.brute force의 해법을 먼저 쓰세요.public class Solution {
public List<String> wordBreak(String s, Set<String> dict) {
List<String> res = new ArrayList<String>();
if(s.length() == 0 || s == null)
return res;
recursive(s, 0, dict, "", res);
return res;
}
public void recursive(String s, int index, Set<String> dict, String string, List<String> res){
if(index >= s.length()){
res.add(string);
return;
}
StringBuilder builder = new StringBuilder();
for(int i = index; i < s.length(); i++){
builder.append(s.charAt(i));
if(dict.contains(builder.toString())){
String str = string.isEmpty() ? builder.toString() : (string + " " + builder.toString());
recursive(s, i + 1, dict, str, res);
}
}
}
}
빅데이터 집합은 통하지 않는다.인터넷에서 가지를 자르는 방법을 보았는데 DP의 사상을 이용하는 것이다. 만약에 어떤 점 i가 이전의 검색에서 결과를 얻지 못하면 이후에는 검색을 하지 않는다.
public class Solution {
public List<String> wordBreak(String s, Set<String> dict) {
List<String> res = new ArrayList<String>();
if(s.length() == 0 || s == null)
return res;
boolean[] possible = new boolean[s.length() + 1];
Arrays.fill(possible, true);
recursive(s, 0, dict, "", res, possible);
return res;
}
public void recursive(String s, int index, Set<String> dict, String string, List<String> res, boolean[] possible){
if(index >= s.length()){
res.add(string);
return;
}
StringBuilder builder = new StringBuilder();
for(int i = index; i < s.length(); i++){
builder.append(s.charAt(i));
//only perform search if there are possible solutions in level i + 1
if(dict.contains(builder.toString()) && possible[i + 1]){
String str = string.isEmpty() ? builder.toString() : (string + " " + builder.toString());
int beforeSearch = res.size();
recursive(s, i + 1, dict, str, res, possible);
//if the result size is not changed after the search, then there is no solution at i
if(beforeSearch == res.size())
possible[i + 1] = false;
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.