-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0140. Word Break II
32 lines (29 loc) · 977 Bytes
/
0140. Word Break II
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
class Solution {
public boolean find(List<String> wordDict, String sub){
for(String i : wordDict){
if(i.equals(sub))
return true;
}
return false;
}
public void helper(String s, List<String> wordDict, String now, ArrayList<String> all){
if(s.length() == 0){
now = now.substring(0, now.length() - 1);
all.add(now);
return;
}
for(int i = 1; i <= s.length(); i++){
String sub = s.substring(0, i);
if(find(wordDict, sub)){
String news = s.substring(i, s.length());
String newnow = now + sub + " ";
helper(news, wordDict, newnow, all);
}
}
}
public List<String> wordBreak(String s, List<String> wordDict) {
ArrayList<String> all = new ArrayList<>();
helper(s, wordDict, "", all);
return all;
}
}