[LeetCode]131.Palindrome Partitioning

简介:

题目

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;
    }

运行时间

这里写图片描述

目录
相关文章
|
存储
LeetCode 132. Palindrome Partitioning II
给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。 返回符合要求的最少分割次数。
102 0
LeetCode 132. Palindrome Partitioning II
LeetCode 131. Palindrome Partitioning
给定一个字符串 s,将 s 分割成一些子串,使每个子串都是回文串。 返回 s 所有可能的分割方案。
96 0
LeetCode 131. Palindrome Partitioning
|
C++ 网络安全
[LeetCode] Palindrome Partitioning II
This link has two nice solutions, one updating from forth to back (posted by tqlong in the post) and the other updating from back to forth (posted by diego2 in the answer).
824 0
[LeetCode] Palindrome Partitioning
The problem has a nice structure that backtracking naturally fits in. The structure is, given a starting position idx, we search from idx till the end of the string s.
665 0
|
3月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
4月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
124 2