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

Palindrome Partitioning

时间:2017-05-20 16:31:40      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:++   log   深度   string   tar   ring   方法   turn   dfs   

方法:使用深度遍历的方法,时间复杂度O(2^n)

class Solution {
public:
    vector<vector<string>> partition(string s) {
        vector<vector<string>> result;
        vector<string> path;
        
        dfs(s, path, result, 0);
        return result;
    }
    
    void dfs(string &s, vector<string> &path, vector<vector<string>> &result, int start)
    {
        if(start == s.size())
        {
            result.push_back(path);
            return;
        }
        
        for(int i=start; i<s.size(); ++i)
        {
            if(isPalindrome(s, start, i))
            {
                path.push_back(s.substr(start, i-start +1));
                dfs(s, path, result, i+1);
                path.pop_back();
            }
        }
    }
    
    bool isPalindrome(string s, int start, int end)
    {
        while(start < end && s[start] == s[end])
        {
            ++start;
            --end;
        }
        return (start >= end);
    }
};

 

Palindrome Partitioning

标签:++   log   深度   string   tar   ring   方法   turn   dfs   

原文地址:http://www.cnblogs.com/chengyuz/p/6882310.html

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