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

LeetCode 131. 分割回文串(Palindrome Partitioning)

时间:2019-06-01 23:31:45      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:etc   font   href   分割   ref   实现   方案   warning   一个   

131. 分割回文串
131. Palindrome Partitioning

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

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

LeetCode131. Palindrome Partitioning中等

示例:

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

Java 实现

相似题目

参考资料

LeetCode 131. 分割回文串(Palindrome Partitioning)

标签:etc   font   href   分割   ref   实现   方案   warning   一个   

原文地址:https://www.cnblogs.com/hglibin/p/10961300.html

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