LeetCode 22. Generate Parentheses (Catalan数字 + 递归)

这题看的第一眼,这不就是Catalan Number么 - - 这不就是递归么。这是我之前学Catalan Number的教材的部分摘录,看完就知道怎么写啦。

Catalan numbers:

Set P of balanced parentheses strings are recursively defined as

• λ ∈ (λ is empty string)

• If α, β ∈ P, then (αβ ∈ P

Every nonempty balanced paren string can be obtained via Rule 2 from a unique α, β pair.

C:  number of balanced parentheses strings with exactly pairs of parenthesesC= 1 empty string

Cn+1Every string with + 1 pairs of parentheses can be obtained in a unique way via rule 2.

One paren pair comes explicitly from the rule.pairs from αnpairs from β

Cn+1 =  sigma   C· Cnk   n0    // CSDN的编辑器用不惯,直接写sigma,就是二项式求和嘛 T^T 想用$$写数学公式都显示不了?

C=1     

CC0=1 

CC0CC1C0  = 2   

C··· = 5

1, 1, 2, 5, 14, 42, 132, 429, 1430, 4862, 16796, 58786, 208012, 742900, 2674440, 9694845, 35357670, 129644790, 477638700, 1767263190, 6564120420, 24466267020, 91482563640, 343059613650, 1289904147324, 4861946401452, 18367353072152, 69533550916004, 263747951750360, 1002242216651368


然后哼哧哼哧马上写好了,一次通过,可是妈蛋啊,只打败了 28% 的人-  - 

等我什么时候有空了再去看看别人很快的代码吧~

题目:

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:

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

先贴上我的只打败了28%的代码- - ,只有8个测试用例,废话要是有40个,岂不算到下一次宇宙大爆炸。

class Solution {
public:
    vector<string> generateParenthesis(int n) {
        vector<string> res;
        if(n < 0)
            return res;
        if (n == 0){          // #0 = 1
            res.push_back("");
            return res;
        }
        if( n == 1){          // #1 = 1
            res.push_back("()");
            return res;
        }
        res = iter(n);
        return res;
     }
    
    vector<string> iter(int N){
        vector<string> res;
        if(N == 0){
            res.push_back("");
            return res;                       //递归出口
        }
        if(N == 1){
            res.push_back("()");
            return res;                       //递归出口
        }
        for(int k = 0; k <= (N-1); k++){
            string tempStr;
            vector<string> temp1 = iter(k);       //递归
            vector<string> temp2 = iter(N-1-k);   //递归
            for(int i = 0; i < temp1.size(); i++){
                for(int j = 0; j < temp2.size(); j++){
                    tempStr = "(" + temp1[i] + ")" + temp2[j];
                    res.push_back(tempStr);
                }
             } 
        }
        return res;
    }
 
};


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值