首页 > 其他 > 详细

Generate Parentheses -- leetcode

时间:2014-12-25 20:37:43      阅读:164      评论:0      收藏:0      [点我收藏+]

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> generateParenthesis(int n) {
        vector<string> result;
        string item;
        traverse(result, item, n, n);
        return result;
    }

    void traverse(vector<string> &res, string &item, int left, int right) {
        if (!left && !right)
                return res.push_back(item);

        if (right < left)
                return;

        if (left) {
                item.push_back('(');
                traverse(res, item, left-1, right);
                item.pop_back(); // c++ 11
        }

        if (right) {
                item.push_back(')');
                traverse(res, item, left, right-1);
                item.pop_back(); // c++ 11
        }
    }
};

在leetcode上的执行时间为4ms。


此算法的关键点是,在构造子串中,确保左括号的数量必须大于或者等于右括号。


Generate Parentheses -- leetcode

原文:http://blog.csdn.net/elton_xiao/article/details/42149791

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!