当前位置 : 主页 > 手机开发 > ROM >

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

来源:互联网 收集:自由互联 发布时间:2021-06-10
131. 分割回文串 131. Palindrome Partitioning 题目描述 给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。 返回 s 所有可能的分割方案。 LeetCode 131. Palindrome Partitioning 中等 示例

131. 分割回文串
131. Palindrome Partitioning

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

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

LeetCode131. Palindrome Partitioning中等

示例:

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

Java 实现

相似题目

  • 132. 分割回文串 II Palindrome Partitioning II

参考资料

  • https://leetcode.com/problems/palindrome-partitioning/
  • https://leetcode-cn.com/problems/palindrome-partitioning/
网友评论