题目描述
给你一个字符串 s
,请你将 s
分割成一些子串,使每个子串都是 回文串
。返回 s
所有可能的分割方案。
样例输入
示例 1:
输入:s = "aab" 输出:[["a","a","b"],["aa","b"]]
示例 2:
输入:s = "a" 输出:[["a"]]
提示:
1 <= s.length <= 16
s
仅由小写英文字母组成
题解
class Solution {
private:
vector<string> path;
vector<vector<string>> res;
//判断是否是回文串
bool isValid(const string& str, int start ,int end)
{
while(start<end)
{
if(str[start]!=str[end])
return false;
start++;
end--;
}
return true;
}
void backing(string s,int index)
{
if(index==s.size())
{
res.emplace_back(path);
return;
}
for(int i=index;i<s.size();i++)
{
if(isValid(s,index,i))
{
path.emplace_back(s.substr(index,i-index+1));
backing(s,i+1);
path.pop_back();
}
}
}
public:
vector<vector<string>> partition(string s) {
backing(s,0);
return res;
}
};