Leetcode题记

Generate Parentheses

2019-05-12  本文已影响0人  zhouycoriginal

Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.

For example, given n = 3, a solution set is:

[
"((()))",
"(()())",
"(())()",
"()(())",
"()()()"
]


题意是给出n对括号,计算出其所有可能的组合。同样的与上题一样画出树形解法,求解有以下几个原则:

void back_tracting(vector<string> &result, int left, int right,string &tmp_result){
    if(left==0&right==0){
        result.push_back(tmp_result);
        return;
    }
    if(left>0){
        tmp_result += '(';
        back_tracting(result,left-1,right,tmp_result);
        tmp_result.pop_back();
    }

    if(right>left){
        tmp_result+=')';
        back_tracting(result,left,right-1,tmp_result);
        tmp_result.pop_back();
    }
}

通过pop_back回到上一个回溯点

代码:
https://github.com/HCMY/UnCategoticalableAlgorithm/blob/master/Leetcode/BackTrack/Medium/GenerateParentheses.cc

上一篇 下一篇

猜你喜欢

热点阅读