您的位置:首页 > 其它

Leetcode Generate Parentheses

2016-06-29 05:15 399 查看
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:
[
"((()))",
"(()())",
"(())()",
"()(())",
"()()()"
]


Difficulty: Medium

public class Solution {
List<String> res = new ArrayList<String>();
public void helper(int left, int right, String s){
if(right < left) return;
if(left == 0 && right == 0){
res.add(new String(s));
return;
}
if(left == right){
s = s + '(';
helper(left - 1, right, s);
s = s.substring(0, s.length() - 1);
return;
}
if(left == 0){
s = s + ')';
helper(left, right - 1, s);
s = s.substring(0, s.length() - 1);
return;
}
s = s + '(';
helper(left - 1, right, s);
s = s.substring(0, s.length() - 1);

s = s + ')';
helper(left, right - 1, s);
s = s.substring(0, s.length() - 1);
return;

}
public List<String> generateParenthesis(int n) {
String s = "";
helper(n, n, s);
return res;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: