[LeetCode]131.Palindrome Partitioning

160 篇文章 28 订阅

题目

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

Return all possible palindrome partitioning of s.

For example, given s = “aab”,
Return

[
[“aa”,”b”],
[“a”,”a”,”b”]
]

思路

此题可以用回溯法解决。把字符串s分为前后两个字串 str1, str2;如果str1是回文,加入partition,然后递归str2.

代码

    /**------------------------------------
    *   日期:2015-03-02
    *   作者:SJF0115
    *   题目: 131.Palindrome Partitioning
    *   网址:https://oj.leetcode.com/problems/palindrome-partitioning/
    *   结果:AC
    *   来源:LeetCode
    *   博客:
    ---------------------------------------**/
    #include <iostream>
    #include <vector>
    #include <algorithm>
    using namespace std;

    class Solution {
    public:
        vector<vector<string> > partition(string s) {
            vector<string> path;
            vector<vector<string> > result;
            int size = s.size();
            if(size <= 0){
                return result;
            }//if
            Partition(s,size,0,path,result);
            return result;
        }
    private:
        // s源字符串 size 源字符串长度 start 分割点
        // path中间结果 result 最终结果
        void Partition(string str,int size,int start,vector<string> &path,vector<vector<string> > &result){
            // 终止条件
            if(start == size){
                result.push_back(path);
                return;
            }//if
            string substr;
            // 分割字符串
            for(int i = start;i < size;++i){
                substr = str.substr(start,i-start+1);
                // 判断是否是回文串
                if(IsPalindrome(substr)){
                    path.push_back(substr);
                    Partition(str,size,i+1,path,result);
                    path.pop_back();
                }//if
            }//for
        }
        // 判断字符串是否是回文串
        bool IsPalindrome(string str){
            int size = str.size();
            if(size == 0){
                return false;
            }//if
            int left = 0;
            int right = size - 1;
            while(left < right) {
                if(str[left] != str[right]) {
                    return false;
                }//if
                left++;
                right--;
            }//while
            return true;
        }
    };

    int main(){
        Solution s;
        string str("aaba");
        vector<vector<string> > result = s.partition(str);
        // 输出
        for(int i = 0;i < result.size();++i){
            for(int j = 0;j < result[i].size();++j){
                cout<<result[i][j]<<" ";
            }//for
            cout<<endl;
        }//for
        return 0;
    }

运行时间

这里写图片描述

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

@SmartSi

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值