首页 > 其他 > 详细

[LeetCode]Generate Parentheses

时间:2014-05-21 16:40:09      阅读:427      评论:0      收藏:0      [点我收藏+]

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:
    std::string tmp;
std::vector<std::string> ans;

void DFS(int left, int right, int n)
{
	if(left == right && left == n)
	{
		ans.push_back(tmp);
		return;
	}
	if(left < n)
	{
		tmp[left + right] = ‘(‘;
		DFS(left + 1, right, n);
	}
	if(right < left)
	{
		tmp[left + right] = ‘)‘;
		DFS(left, right + 1, n);
	}	
}
std::vector<std::string> generateParenthesis(int n)
{
	tmp.resize(n << 1);
	DFS(0, 0, n);
	return ans;
}
};




[LeetCode]Generate Parentheses,布布扣,bubuko.com

[LeetCode]Generate Parentheses

原文:http://blog.csdn.net/jet_yingjia/article/details/26343547

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!