前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 0131 - Palindrome Partitioning

LeetCode 0131 - Palindrome Partitioning

作者头像
Reck Zhang
发布2021-08-11 14:36:21
2230
发布2021-08-11 14:36:21
举报
文章被收录于专栏:Reck Zhang

Palindrome Partitioning

Desicription

Given a string s, partition s such that every substring of the partition is a palindrome.

Return all possible palindrome partitioning of s.

Example:

代码语言:javascript
复制
Input: "aab"
Output:
[
  ["aa","b"],
  ["a","a","b"]
]

Solution

代码语言:javascript
复制
class Solution {
private:
    void dfs(int index, string& s, vector<string>& path, vector<vector<string>>& res) {
        if(index == s.size()) {
            res.push_back(path);
            return ;
        }
        for(int i = index; s[i]; i++) {
            if(isPalindrome(s, index, i)) {
                path.push_back(s.substr(index, i - index + 1));
                dfs(i + 1, s, path, res);
                path.pop_back();
            }
        }
    }
    bool isPalindrome(string& s, int left, int right) {
        while(left <= right)
            if(s[left++] != s[right--])
                return false;
        return true;
    }
public:
    vector<vector<string>> partition(string s) {
        vector<vector<string>> res;
        vector<string> path;
        dfs(0, s, path, res);
        return res;
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-05-25,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Palindrome Partitioning
    • Desicription
      • Solution
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档