码迷,mamicode.com
首页 > 其他好文 > 详细

131. 分割回文串 回溯

时间:2020-07-07 13:26:07      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:输入   str   pen   list   lin   返回   app   etc   color   

给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。

返回 s 所有可能的分割方案。

示例:

输入: "aab"
输出:
[
["aa","b"],
["a","a","b"]
]


链接:https://leetcode-cn.com/problems/palindrome-partitioning

class Solution:
    def partition(self, s: str) -> List[List[str]]:
        res=[]
        def helper(s,tmp):
            if not s:
                res.append(tmp)//空字符说明处理完毕
            for i in range(1,len(s)+1):
                if s[:i]==s[:i][::-1]://判断回文
                    helper(s[i:],tmp+[s[:i]])//回溯
        
        helper(s,[])
        return res

 

131. 分割回文串 回溯

标签:输入   str   pen   list   lin   返回   app   etc   color   

原文地址:https://www.cnblogs.com/xxxsans/p/13260104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!