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

LeetCode 22 Generate Parentheses

时间:2015-11-11 16:36:53      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:函数   leetcode   解决方案   generate   parenthese   

翻译

给定一个括号序列,写一个函数用于生成正确形式的括号组合。
例如,给定n = 3,一个解决方案集是:
"((()))", "(()())", "(())()", "()(())", "()()()"

原文

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:

"((()))", "(()())", "(())()", "()(())", "()()()"

代码

class Solution {
public:
    vector<string> result;
    vector<string> generateParenthesis(int n) {
        generate(0, 0, "", n);
        return result;
    }
    void generate(int left, int right, string s, int n) {
        if(right == n) {
            result.push_back(s);
        }
        else
        {
            if(left < n)
            {
                generate(left + 1, right, s + "(", n);
            }
            if(right < left)
            {
                generate(left, right + 1, s + ")", n);
            }
        }
    }
};

我自己写的是用排列组合加上第20题的代码,有些繁琐不如上面的解法,为了更直观的理解这个递归的过程,就画了下面这个示意图。轻拍……

技术分享

版权声明:本文为 NoMasp柯于旺 原创文章,未经许可严禁转载!欢迎访问我的博客:http://blog.csdn.net/nomasp

LeetCode 22 Generate Parentheses

标签:函数   leetcode   解决方案   generate   parenthese   

原文地址:http://blog.csdn.net/nomasp/article/details/49766535

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