题目描述 给你一个字符串 s,请你将 s 分割成一些子串,使每个子串都是 回文串。 返回 s 所有可能的分割方案。 代码 class Solution {public:vector<vector<string>> res;vector<string> path;bool isPalindrome(const string &s, int start, int end) {while (sta
https://leetcode.com/problems/palindrome-partitioning/ 问题描述 Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of