leetcode 131. 分割回文串 Palindrome Partitioning 解法 python

一.题目描述

给定一个字符串 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    

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值