首页 > 代码库 > Generate Parentheses
Generate Parentheses
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) {
string s;
for(int i=0;i<n*2;i++) s=s+" ";
vector<string> result;
int left=n;
int right=n;
gen(result,s,left,right,0);
return result;
}
void gen(vector<string>& result,string& s,int left,int right,int step)
{
if(left>right) return;
if(left==0 && right==0)
{
result.push_back(s);
return;
}
if(left>0)
{
s[step]=‘(‘;
gen(result,s,left-1,right,step+1);
}
if(right>0)
{
s[step]=‘)‘;
gen(result,s,left,right-1,step+1);
}
}
};
public:
vector<string> generateParenthesis(int n) {
string s;
for(int i=0;i<n*2;i++) s=s+" ";
vector<string> result;
int left=n;
int right=n;
gen(result,s,left,right,0);
return result;
}
void gen(vector<string>& result,string& s,int left,int right,int step)
{
if(left>right) return;
if(left==0 && right==0)
{
result.push_back(s);
return;
}
if(left>0)
{
s[step]=‘(‘;
gen(result,s,left-1,right,step+1);
}
if(right>0)
{
s[step]=‘)‘;
gen(result,s,left,right-1,step+1);
}
}
};
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。