-
Notifications
You must be signed in to change notification settings - Fork 0
/
Q131.java
76 lines (65 loc) · 1.96 KB
/
Q131.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package algorithms;
/**
* 题目描述:
* 给你一个字符串 s,请你将 s 分割成一些子串,使每个子串都是 回文串 。返回 s 所有可能的分割方案。
* <p>
* 回文串 是正着读和反着读都一样的字符串。
* <p>
*
* <p>
* 示例 1:
* <p>
* 输入:s = "aab"
* 输出:[["a","a","b"],["aa","b"]]
* 示例 2:
* <p>
* 输入:s = "a"
* 输出:[["a"]]
*
* <p>
* 来源:力扣(LeetCode)
* 链接:https://leetcode-cn.com/problems/palindrome-partitioning
* 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
*/
import java.util.*;
public class Q131 {
List<List<String>> res = new ArrayList<>();
Deque<String> path = new LinkedList<>();
public List<List<String>> partition(String s) {
int len = s.length();
if (len == 0) {
return res;
}
backTracking(s, len, 0);
return res;
}
void backTracking(String s, int len, int startIndex) {
if (startIndex == len) { // 递归停止
res.add(new ArrayList<>(path));
return;
}
for (int i = startIndex; i < len; i++) {
if (!isPalindrome(s.substring(startIndex, i + 1))) { // 剪枝
continue;
}
path.addLast(s.substring(startIndex, i + 1));
backTracking(s, len, i + 1); // 递归
path.removeLast();// 回溯
}
}
boolean isPalindrome(String s) {
int len = s.length();
for (int i = 0; i < len; i++) {
if (s.charAt(i) != s.charAt(len - i - 1)) {
return false;
}
}
return true;
}
public static void main(String[] args) {
String s = "aab";
Q131 q = new Q131();
List<List<String>> ans = q.partition(s);
System.out.println(ans);
}
}