[Leetcode] Generate Parentheses

本文介绍了一种递归算法,用于生成所有可能的有效括号组合。对于给定的整数n,该算法能够生成所有由n对括号组成的正确闭合的字符串。核心思想是通过递归地添加左右括号,并确保任何时候左括号的数量不小于右括号的数量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题:

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:

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

产生所有括号的组合,核心要点是如果左括号数nl>=nr右边括号数,则只能放入左括号,如果nl<nr,则当前位置可以放左或右括号。


vector<string> str;
char a='(';
char b=')';
void rankkuohao(string  s, char c, int nl, int nr)
{
        if( c !=' ') s.push_back(c);
	if(nl==0 &&nr==0)
	{
	    str.push_back(s);
	    s.clear();
	};

	if( nr > nl)
	{
	    if(nl>0)
		rankkuohao(s,  a,nl-1, nr);            //放入之后数量减一

	    if(nr>0)
		rankkuohao(s, b, nl, nr-1);
	}
	else if(nl>0)
	     rankkuohao(s, a, nl-1, nr);

}
vector<string> generateParenthesis(int n)
{   string  s;
    char c=' ';
    if (n<1) return str;
    rankkuohao(s, c, n, n);
    return str;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值