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——Palindrome Partition,布布扣,bubuko.com
LeetCode——Palindrome Partition
原文地址:http://blog.csdn.net/xia_yu_mao_fa/article/details/26625155