力扣-131题 分割回文串(C++)- 回溯

题目链接:https://leetcode-cn.com/problems/palindrome-partitioning/ 题目如下:
class Solution {
public:
vector> partition(string s) {
backtracking(s,0);
return result;
}
void backtracking(string s,int startIndex){
//在处理组合问题时,startIndex表示下一轮递归时的起止位置,这切割问题中表示切割线
if(startIndex>=s.size()){
result.push_back(path);
return;
}

力扣-131题 分割回文串(C++)- 回溯最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/7903.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>