您的位置:首页 > 其它

leetcode 22. Generate Parentheses

2017-06-28 10:43 369 查看
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:

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

解:本题的思路是利用二叉树的想法来遍历所有的情况,采用深度优先的搜索算法dfs。而二叉树的本质就是利用递归,主要想好添加左括号和右括号的条件。

class Solution {
public:
vector<string> generateParenthesis(int n) {
vector<string> res;
addingChar(res, "", n, n);
return res;
}
void addingChar(vector<string> &res, string str, int left, int right){
if(left == 0 && right == 0){
res.push_back(str);return;
}
if(left > 0){
addingChar(res, str+"(", left - 1, right);
}
if(right > left){
addingChar(res, str+")", left, right - 1);
}
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode