-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwordbreak.java
60 lines (47 loc) · 1.43 KB
/
wordbreak.java
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
54
55
56
57
58
59
60
package strings;
import java.util.HashSet;
public class wordbreak {
public static void main(String[] args) {
// TODO Auto-generated method stub
// String[] dict = { "i", "like", "sam", "sung", "samsung", "mobile", "ice", "cream", "icecream", "man", "go",
// "mango" };
String[] dict = { "i", "love", "ilove", "mango", "man", "go", "ice", "cream", "icecream" };
HashSet<String> dictset = new HashSet<String>();
for (int i = 0; i < dict.length; i++) {
dictset.add(dict[i]);
}
// System.out.println(wordbreak("idontlovemangoicecream", dictset));
wordbreakbacktracking("ilovemangoicecream", dictset, "");
}
public static boolean wordbreak(String s, HashSet<String> dict) {
int[] dp = new int[s.length()];
for (int i = 0; i < dp.length; i++) {
for (int j = 0; j <= i; j++) {
String wordcheck = s.substring(j, i + 1);
if (dict.contains(wordcheck)) {
if (j > 0)
dp[i] += dp[j - 1];
else
dp[i] = 1;
}
}
}
for (int i = 0; i < dp.length; i++) {
System.out.println(dp[i]);
}
return dp[s.length() - 1] > 0;
}
public static void wordbreakbacktracking(String s, HashSet<String> dict, String ans) {
if (s.length() == 0) {
System.out.println(ans);
return;
}
for (int i = 0; i < s.length(); i++) {
String left = s.substring(0, i + 1);
if (dict.contains(left)) {
String right = s.substring(i + 1);
wordbreakbacktracking(right, dict, ans + left + " ");
}
}
}
}