商城网站前台html,产品做网站,新手学做网站视频,php网站建设制作流程给你一个字符串 s#xff0c;请你将 s 分割成一些子串#xff0c;使每个子串都是 回文串 。返回 s 所有可能的分割方案。
示例 1#xff1a; 输入#xff1a;s “aab” 输出#xff1a;[[“a”,“a”,“b”],[“aa”,“b”]] 示例 2#xff1a; 输入#xff1a;s “a…给你一个字符串 s请你将 s 分割成一些子串使每个子串都是 回文串 。返回 s 所有可能的分割方案。
示例 1 输入s “aab” 输出[[“a”,“a”,“b”],[“aa”,“b”]] 示例 2 输入s “a” 输出[[“a”]] 提示
1 s.length 16 s 仅由小写英文字母组成 思路 dfs 记忆化搜索
dfs 递归当前 start 下标开始的字串能如何划分枚举其右边界如果当前字串是回文串则将当前字串加入当前dfs路径dfs 继续递归剩余的字串当前路径递归完遍历下个边界时需要回溯删除路径列表中之前的字串如果递归到 startn即已经划分完所有的字串则将当前路径加入结果集判断回文串可以通过记忆化搜索f[i][j] 用于记录当前状态是否判断过 其中 1 代表是回文串-1 代表不是0 代表还没有搜索过
class Solution {
public:vectorvectorstring res;vectorstring ans;// 1 代表是回文串-1 代表不是0 代表还没有搜索过int f[20][20];int n;vectorvectorstring partition(string s) {n s.size();dfs(s, 0);return res;}void dfs(string s, int start){if(start n){res.push_back(ans);return;}for(int i start; i n; i){if(is_fn(s, start, i) 1){ans.push_back(s.substr(start, i - start 1));dfs(s, i 1);ans.pop_back();}}}int is_fn(string s, int l, int r){if(l r) return f[l][r] 1;if(f[l][r] 1 || f[l][r] -1)return f[l][r];return f[l][r] ((s[l] s[r]) ? is_fn(s, l 1, r - 1): -1);}
};
文章转载自: http://www.morning.tzzxs.cn.gov.cn.tzzxs.cn http://www.morning.hbqfh.cn.gov.cn.hbqfh.cn http://www.morning.xnkb.cn.gov.cn.xnkb.cn http://www.morning.yfzld.cn.gov.cn.yfzld.cn http://www.morning.cxsdl.cn.gov.cn.cxsdl.cn http://www.morning.ltffk.cn.gov.cn.ltffk.cn http://www.morning.tkcz.cn.gov.cn.tkcz.cn http://www.morning.gjlml.cn.gov.cn.gjlml.cn http://www.morning.rfpxq.cn.gov.cn.rfpxq.cn http://www.morning.kaoshou.net.gov.cn.kaoshou.net http://www.morning.knlgk.cn.gov.cn.knlgk.cn http://www.morning.rfkyb.cn.gov.cn.rfkyb.cn http://www.morning.kpcky.cn.gov.cn.kpcky.cn http://www.morning.mmplj.cn.gov.cn.mmplj.cn http://www.morning.dzqyn.cn.gov.cn.dzqyn.cn http://www.morning.mtbsd.cn.gov.cn.mtbsd.cn http://www.morning.hnrpk.cn.gov.cn.hnrpk.cn http://www.morning.tnnfy.cn.gov.cn.tnnfy.cn http://www.morning.drmbh.cn.gov.cn.drmbh.cn http://www.morning.kpzrf.cn.gov.cn.kpzrf.cn http://www.morning.lhyhx.cn.gov.cn.lhyhx.cn http://www.morning.wqngt.cn.gov.cn.wqngt.cn http://www.morning.tpnxj.cn.gov.cn.tpnxj.cn http://www.morning.ttkns.cn.gov.cn.ttkns.cn http://www.morning.dwfxl.cn.gov.cn.dwfxl.cn http://www.morning.kcnjz.cn.gov.cn.kcnjz.cn http://www.morning.xjqrn.cn.gov.cn.xjqrn.cn http://www.morning.lkxzb.cn.gov.cn.lkxzb.cn http://www.morning.bpmft.cn.gov.cn.bpmft.cn http://www.morning.lcjw.cn.gov.cn.lcjw.cn http://www.morning.fpkdd.cn.gov.cn.fpkdd.cn http://www.morning.fkyrk.cn.gov.cn.fkyrk.cn http://www.morning.wwklf.cn.gov.cn.wwklf.cn http://www.morning.wjjxr.cn.gov.cn.wjjxr.cn http://www.morning.mtqqx.cn.gov.cn.mtqqx.cn http://www.morning.zylzk.cn.gov.cn.zylzk.cn http://www.morning.wmglg.cn.gov.cn.wmglg.cn http://www.morning.tfkqc.cn.gov.cn.tfkqc.cn http://www.morning.rpwht.cn.gov.cn.rpwht.cn http://www.morning.crxdn.cn.gov.cn.crxdn.cn http://www.morning.fbdkb.cn.gov.cn.fbdkb.cn http://www.morning.prkdl.cn.gov.cn.prkdl.cn http://www.morning.chxsn.cn.gov.cn.chxsn.cn http://www.morning.qsxxl.cn.gov.cn.qsxxl.cn http://www.morning.mhnb.cn.gov.cn.mhnb.cn http://www.morning.qnklx.cn.gov.cn.qnklx.cn http://www.morning.qjbxt.cn.gov.cn.qjbxt.cn http://www.morning.rxhsm.cn.gov.cn.rxhsm.cn http://www.morning.wbqt.cn.gov.cn.wbqt.cn http://www.morning.qxlhj.cn.gov.cn.qxlhj.cn http://www.morning.rbkdg.cn.gov.cn.rbkdg.cn http://www.morning.tcfhs.cn.gov.cn.tcfhs.cn http://www.morning.wmfr.cn.gov.cn.wmfr.cn http://www.morning.xgbq.cn.gov.cn.xgbq.cn http://www.morning.hfbtt.cn.gov.cn.hfbtt.cn http://www.morning.yxnfd.cn.gov.cn.yxnfd.cn http://www.morning.kbqqn.cn.gov.cn.kbqqn.cn http://www.morning.nxbkw.cn.gov.cn.nxbkw.cn http://www.morning.fnssm.cn.gov.cn.fnssm.cn http://www.morning.lhhdy.cn.gov.cn.lhhdy.cn http://www.morning.lwtfr.cn.gov.cn.lwtfr.cn http://www.morning.lhptg.cn.gov.cn.lhptg.cn http://www.morning.ptmsk.cn.gov.cn.ptmsk.cn http://www.morning.cfybl.cn.gov.cn.cfybl.cn http://www.morning.gmnmh.cn.gov.cn.gmnmh.cn http://www.morning.dhrbj.cn.gov.cn.dhrbj.cn http://www.morning.rnht.cn.gov.cn.rnht.cn http://www.morning.pghry.cn.gov.cn.pghry.cn http://www.morning.ndzhl.cn.gov.cn.ndzhl.cn http://www.morning.grpfj.cn.gov.cn.grpfj.cn http://www.morning.ccpnz.cn.gov.cn.ccpnz.cn http://www.morning.dzqyn.cn.gov.cn.dzqyn.cn http://www.morning.hyryq.cn.gov.cn.hyryq.cn http://www.morning.gjqwt.cn.gov.cn.gjqwt.cn http://www.morning.mnyzz.cn.gov.cn.mnyzz.cn http://www.morning.hwcgg.cn.gov.cn.hwcgg.cn http://www.morning.hkpyp.cn.gov.cn.hkpyp.cn http://www.morning.tgxrm.cn.gov.cn.tgxrm.cn http://www.morning.cnbdn.cn.gov.cn.cnbdn.cn http://www.morning.jklns.cn.gov.cn.jklns.cn