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

LeetCode Palindrome Partitioning

时间:2016-04-22 19:36:15      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

LeetCode解题之Palindrome Partitioning


原题

将一个字符串分割成若干个子字符串,使得子字符串都是回文字符串,要求列出所有的分割方案。

注意点:

例子:

输入: s = “aab”

输出: result = [[“a”, “a”, “b”], [“aa”, “b”]]

解题思路

采用了最简单的递归方法,将一个字符串分为前后两部分,如果第一部分是一个回文字符串,则对第二部分再次分割,不断递归,直到递归的终止条件——字符串为空为止;如果第一部分不是一个回文字符串,则尝试下一种分割方法。

AC源码

class Solution(object):
    def partition(self, s):
        """
        :type s: str
        :rtype: List[List[str]]
        """
        if not s:
            return [[]]
        result = []
        for i in range(len(s)):
            if self.isPalindrome(s[:i + 1]):
                for r in self.partition(s[i + 1:]):
                    result.append([s[:i + 1]] + r)
        return result

    def isPalindrome(self, s):
        return s == s[::-1]


if __name__ == "__main__":
    assert Solution().partition("aab") == [
        ["a", "a", "b"],
        ["aa", "b"]
    ]

欢迎查看我的Github (https://github.com/gavinfish/LeetCode-Python) 来获得相关源码。

LeetCode Palindrome Partitioning

标签:

原文地址:http://blog.csdn.net/u013291394/article/details/51212959

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