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

leetcode: 字符串

时间:2016-03-30 12:29:14      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

1. palindrome-partitioning

Given a string s, partition s such that every substring of the partition is a palindrome.

Return all possible palindrome partitioning of s.

For example, given s ="aab",
Return

  [
    ["aa","b"],
    ["a","a","b"]
  ]

给定一个字符串,将字符串分成多个部分,满足每一部分都是回文串,请输出所有可能的情况


leetcode: 字符串

标签:

原文地址:http://www.cnblogs.com/zxqstrong/p/5336418.html

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