一.题目描述
给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。
返回 s 所有可能的分割方案。
示例:
输入: "aab"
输出:
[
["aa","b"],
["a","a","b"]
]
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
Example:
Input: "aab"
Output:
[
["aa","b"],
["a","a","b"]
]
二.解题思路
求所有的回文分割,穷举,尝试所有可能的切割方法,策略是深度优先搜索+回溯,用到递归。
回溯的条件是前面的字串是回文串。
具体说就是首先尝试1个长度的切割,如果是回文,对字串进行同样的操作,所有字串操作完,将path存进结果里面,
然后回溯到上一个回文串,对之后的字串舱室长度为2的切割,是回文串则重复,不是则尝试下一个长度。
用python的时候注意处理边界和对path的pop操作处理,由于python对[]对象是引用,存path的时候要用path.copy()
相当于生成一个新的对象存进去,否则后面path.pop()完之后,最后res的结果为空
更多leetcode算法题解法请关注我的专栏leetcode算法从零到结束或关注我
欢迎大家一起讨论一起刷题一起ac
三.源代码
class Solution:
# 解题思路讲的比较细致,基本不给注释
def partition(self, s: str) -> List[List[str]]:
res=[]
path=[]
self.dfs(s,path,res)
return res
def dfs(self,s,path,res):
length=len(s)
if length==0:
res.append(path.copy()) #注意这里,对path的处理
for i in range(1,length+1): #注意这里的边界
if self.isPalindrome(s[0:i]):
path.append(s[0:i])
self.dfs(s[i:length],path+s[0:i],res)
path.pop()
def isPalindrome(self,s):
length=len(s)
start=0
end=length-1
while start<=end:
if s[start]!=s[end]:
return False
start=start+1
end=end-1
return True