首页 > 代码库 > LeetCode: Generate Parentheses [021]
LeetCode: Generate Parentheses [021]
【题目】
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:
"((()))", "(()())", "(())()", "()(())", "()()()"
【题意】
给定n对括号,输出所有可行的括号组合字符串。所谓合法,就是可以Valid Parentheses方法评判得到true
【思路】
DFS是生成组合的第一选择。维护一个栈来辅助判断。根据题意,候选的括号组合为n个左括号和n个右括号,我们要生成一个长度为2n的字符串
字符串每一位上的元素只有两种选择,要么左括号,要么右括号。
在入栈判断的时候需要注意以下几点:
1. 当辅助栈为空时,压入左括号,而不考虑右括号
2. 当辅助栈不为空时,栈顶如果是左括号,我们可以压入左括号,或者选择压入右括号(实际上右括号并不真正压入,而是栈顶的左括号出栈与当前右括号匹配)
3. 当辅助栈不为空时,栈顶如果是右括号,只能压入左括号
【代码】
class Solution { public: bool isPair(char left, char right){ if(left==‘(‘&&right==‘)‘)return true; return false; } void combination(vector<string>&result, stack<char>st, string comb, int leftPareNum, int rightPareNum){ if(leftPareNum==0&&rightPareNum==0){ result.push_back(comb); return; } if(st.empty()){ //如果为空则左括号入栈 if(leftPareNum>0){ st.push(‘(‘); combination(result,st,comb+"(",leftPareNum-1,rightPareNum); } } else{ char stTop=st.top(); if(stTop==‘(‘){ if(leftPareNum>0){ st.push(‘(‘); combination(result, st, comb+"(",leftPareNum-1,rightPareNum); st.pop(); } if(rightPareNum>0){ st.pop(); combination(result,st, comb+")",leftPareNum,rightPareNum-1); } } else{ //栈顶为右括号,只能压入左括号 if(leftPareNum>0){ st.push(‘(‘); combination(result,st,comb+"(",leftPareNum-1,rightPareNum); } } } } vector<string> generateParenthesis(int n) { vector<string>result; stack<char>st; combination(result,st,"",n,n); return result; } };
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。