码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]Generate Parentheses

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

标签:style   blog   class   c   code   color   

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

标签:style   blog   class   c   code   color   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!