forked from JFulgoni/Java-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPalindromePartition.java
More file actions
59 lines (52 loc) · 1.41 KB
/
Copy pathPalindromePartition.java
File metadata and controls
59 lines (52 loc) · 1.41 KB
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
package john_test;
import java.util.ArrayList;
import java.util.List;
public class PalindromePartition {
public PalindromePartition(){
}
public List<List<String>> medium(String s){
List<List<String>> res = new ArrayList<List<String>>();
int n = s.length();
boolean[][] dp = new boolean[n][n];
for(int i = n - 1; i >=0; --i){
for(int j = 1; j < n; ++j){
boolean derp = false;
if(s.charAt(i)==s.charAt(j)){ //check and see if the characters at the positions match
if(j< i + 2 || dp[i+1][j-1]){
derp = true;
}
}
dp[i][j] = derp;
}
}
ArrayList<String> path = new ArrayList<String>();
dfs(s, dp, 0, path, res);
return res;
}
//copied from the solution
public void dfs(String s, boolean[][] dp, int start, ArrayList<String> path, List<List<String>> res) {
if (s.length() == start) {
res.add(new ArrayList<String>(path));
return;
}
for (int i = start; i < s.length(); ++i) {
if (dp[start][i] == false) continue;
path.add(s.substring(start,i+1));
dfs(s, dp, i+1,path,res);
path.remove(path.size()-1);
}
}
public boolean isPalindrome(String s){
int n = s.length();
int i = 0;
int j = n - 1;
while(i <= j){
if(s.charAt(i) != s.charAt(j)){
return false;
}
++i;
--j;
}
return true;
}
}