回溯法(1)
原题:
/**
* Created by pradhang on 3/15/2017.
* Given a string s, partition s such that every substring of the partition is a palindrome.
* * Return all possible palindrome partitioning of s.
* * For example, given s = "aab",
* Return
* * [
* ["aa","b"],
* ["a","a","b"]
* ]
*/
【回溯法(1)】答案:
public class PalindromePartitioning {
/**
* Main method
*
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
List result = new PalindromePartitioning().partition("aaaaaaaaaaaaaaaaaa");
}public List partition(String s) {
List result = new ArrayList<>();
doNext(0, new ArrayList<>(), s, result);
return result;
}private void doNext(int i, List row, String s, List result) {
if (i == s.length()) {
List list = new ArrayList<>(row);
result.add(list);
} else {
for (int j = i, l = s.length();
j < l;
j++) {
String sbStr = s.substring(i, j + 1);
if (isPalindrome(sbStr)) {
row.add(sbStr);
doNext(j + 1, row, s, result);
row.remove(row.size() - 1);
}
}
}
}private boolean isPalindrome(String s) {
int i = 0, j = s.length() - 1;
while (i <= j) {
if (s.charAt(i) != s.charAt(j))
return false;
i++;
j--;
}
return true;
}
}
推荐阅读
- 增长黑客的海盗法则
- 艾略特的交易法则“遵循自然规律”
- 《魔法科高中的劣等生》第26卷(Invasion篇)发售
- 涉毒患者(新诗)
- 对抗抑郁最好的方法
- 画解算法(1.|画解算法:1. 两数之和)
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。
- 六步搭建ES6语法环境
- Guava|Guava RateLimiter与限流算法
- 怎样用黑谜速冻膜去黑头,|怎样用黑谜速冻膜去黑头, 最有效的去黑头的方法看这!