Problem
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
ExampleGiven s = "aab", return: [ ["aa","b"], ["a","a","b"] ]Note
backtracking, 指针溢出时添加新的结果到res集合。
Solutionpublic class Solution { public List> partition(String s) { // write your code here List
> res = new ArrayList
>(); List
tem = new ArrayList (); if (s.length() == 0 || s == null){ return res; } dfs(res, tem, s, 0); return res; } public void dfs(List > res, List
tem, String s, int start){ if (start == s.length()){ res.add(new ArrayList (tem)); return; } for (int i = start; i < s.length(); i++){ String str = s.substring(start, i + 1); if (isPalindrome(str)){ tem.add(str); dfs(res, tem, s, i + 1); //start+=1 tem.remove(tem.size() - 1); } } } public boolean isPalindrome(String str){ int l = 0; int r = str.length()-1; while (l < r){ if (str.charAt(l) != str.charAt(r)) return false; l++; r--; } return true; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/65433.html
摘要:假设我们从后向前,分析到第位,开始判断,若为,说明从第位向前到第位的子串是一个回文串,则就等于第位的结果加。然后让继续增大,判断第位到最后一位的范围内,有没有更长的回文串,更长的回文串意味着存在更小的,用新的来替换。 Problem Given a string s, cut s into some substrings such that every substring is a p...
摘要:题目要求现在有一个字符串,将分割为多个子字符串从而保证每个子字符串都是回数。我们只需要找到所有可以构成回数的并且得出最小值即可。即将字符作为,将字符所在的下标列表作为。再采用上面所说的方法,利用中间结果得出最小分割次数。 题目要求 Given a string s, partition s such that every substring of the partition is a ...
摘要:深度优先搜素复杂度时间空间思路因为我们要返回所有可能的分割组合,我们必须要检查所有的可能性,一般来说这就要使用,由于要返回路径,仍然是典型的做法递归时加入一个临时列表,先加入元素,搜索完再去掉该元素。 Palindrome Partitioning Given a string s, partition s such that every substring of the parti...
摘要:用表示当前位置最少需要切几次使每个部分都是回文。表示到这部分是回文。如果是回文,则不需重复该部分的搜索。使用的好处就是可以的时间,也就是判断头尾就可以确定回文。不需要依次检查中间部分。 Given a string s, partition s such that every substring of the partition is a palindrome. Return the...
摘要:找到开头的某个进行切割。剩下的部分就是相同的子问题。记忆化搜索,可以减少重复部分的操作,直接得到后的结果。得到的结果和这个单词组合在一起得到结果。 Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome...
阅读 4776·2023-04-25 18:47
阅读 2627·2021-11-19 11:33
阅读 3412·2021-11-11 16:54
阅读 3077·2021-10-26 09:50
阅读 2518·2021-10-14 09:43
阅读 636·2021-09-03 10:47
阅读 641·2019-08-30 15:54
阅读 1456·2019-08-30 15:44