-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path140. Word Break II
53 lines (30 loc) · 902 Bytes
/
140. 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
class Solution {
public List<String> wordBreak(String s, List<String> wordDict)
{
ArrayList<String> result = new ArrayList<>();
func(s, wordDict, result, "");
return result;
}
public void func(String s, List<String> wordDict, ArrayList<String> result, String curr)
{
if(s.isEmpty())
{
return;
}
for(String word: wordDict)
{
if(s.startsWith(word))
{
String newCurr = curr.isEmpty() ? word:curr + " " + word;
if(s.length() == word.length())
{
result.add(newCurr);
}
else
{
func(s.substring(word.length()), wordDict, result, newCurr);
}
}
}
}
}