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

求n组括号的排列方式 --- 卡特拉数

时间:2014-09-04 22:17:00      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   div   cti   sp   

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:

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

 

void generate(int n, int nLeft, int nRight, string strVal, vector<string> &resVec)
{
    if (nLeft < nRight)
        return;
    if (nLeft==n && nRight==n)
        resVec.push_back(strVal);

    if (nLeft < n)
        generate(n, nLeft+1, nRight, strVal+"(", resVec);
    if (nLeft > nRight)
        generate(n, nLeft, nRight+1, strVal+")", resVec);
}
  
    vector<string> generateParenthesis(int n) {
        vector<string> ans;
        if (n < 1)
            return ans;

        generate(n, 0, 0, "", ans);

        return ans; 
    }

 

求n组括号的排列方式 --- 卡特拉数

标签:style   blog   color   io   ar   for   div   cti   sp   

原文地址:http://www.cnblogs.com/zhhwgis/p/3956903.html

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