码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 131. 分割回文串 DFS

时间:2021-01-21 10:34:20      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:div   for   lazy   loading   als   vector   problems   输出   子串   

地址 https://leetcode-cn.com/problems/palindrome-partitioning/

给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。

返回 s 所有可能的分割方案。

示例:

输入: "aab"
输出:
[
  ["aa","b"],
  ["a","a","b"]
]

算法1
DFS 尝试各个回文组合 检测是否是回文 流程类似下图

技术图片

class Solution {
public:
    vector<vector<string>> ans;

    bool IsPalStr(const string& s) {
        int l = 0; int r = s.size() - 1;
        bool ret = true;
        while (l < r) {
            if (s[l] != s[r]) {ret = false; break;}
            l++; r--;
        }

        return ret;
    }

    void dfs(const string& s, int idx, vector<string>& v) {
        if (idx >= s.size()) {ans.push_back(v);return;}

        for (int len = 1; idx + len <= s.size(); len++) {
            string tmp = s.substr(idx, len);
            if (IsPalStr(tmp)) {
                v.push_back(tmp);
                dfs(s, idx + len, v);
                v.pop_back();
            }
        }

        return;
    }
    vector<vector<string>> partition(string s) {
        vector<string> v;
        dfs(s, 0, v);
        return ans;
    }
};

 

LeetCode 131. 分割回文串 DFS

标签:div   for   lazy   loading   als   vector   problems   输出   子串   

原文地址:https://www.cnblogs.com/itdef/p/14302674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!