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

LeetCode-22.Generate Parentheses

时间:2019-03-26 12:01:38      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:bin   public   function   cti   http   orm   etc   blank   bsp   

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+剪枝
 1 class Solution {//DFS 剪枝 mytip
 2     public List<String> generateParenthesis(int n) {
 3         List<String> re = new ArrayList<>();
 4         generate(n,n,re,"");
 5         return re;
 6         
 7     }
 8     private void generate(int left,int right,List<String> re ,String s){
 9         if(0==left&&0==right){
10             re.add(s);
11             return;
12         }
13         if(left>0){
14             generate(left-1,right,re,s+"(");
15         }
16         if(left<right){
17             generate(left,right-1,re,s+")");
18         }
19     }
20 }

 

相关题

有效括号匹配 LeetCode20 https://www.cnblogs.com/zhacai/p/10429168.html

LeetCode-22.Generate Parentheses

标签:bin   public   function   cti   http   orm   etc   blank   bsp   

原文地址:https://www.cnblogs.com/zhacai/p/10599156.html

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