标签: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; } };
标签:div for lazy loading als vector problems 输出 子串
原文地址:https://www.cnblogs.com/itdef/p/14302674.html