博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode22. Generate Parentheses
阅读量:5073 次
发布时间:2019-06-12

本文共 1120 字,大约阅读时间需要 3 分钟。

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:

"((()))", "(()())", "(())()", "()(())", "()()()"

 

solution:DFS模版

package leetcode2;import java.util.ArrayList;public class Generate_parenthese {    public static ArrayList
generateParenthesis(int n) { ArrayList
reArrayList=new ArrayList
(); String s=new String(); dfs(reArrayList,s,n,n); //DFS的模版递归 dfs(list
,E,deep,somethingConstant) return reArrayList; } public static void dfs(ArrayList
reArrayList, String s, int left,int right) { // TODO Auto-generated method stub // 先考虑deep极值,此处为left,right个数,直接return if(right
0){ dfs(reArrayList, s+'(', left-1, right); } if(right>0){ dfs(reArrayList, s+')', left, right-1); } } public static void main(String[] args) { // TODO Auto-generated method stub System.out.println(generateParenthesis(3)); }}

 

转载于:https://www.cnblogs.com/joannacode/p/4389459.html

你可能感兴趣的文章
PHP上传RAR压缩包并解压目录
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
jQuery 自定义函数
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
网卡流量检测.py
查看>>
poj1981 Circle and Points 单位圆覆盖问题
查看>>
POP的Stroke动画
查看>>
SQL语句在查询分析器中可以执行,代码中不能执行
查看>>
yii 1.x 添加 rules 验证url数组
查看>>
html+css 布局篇
查看>>
SQL优化
查看>>
用C语言操纵Mysql
查看>>
轻松学MVC4.0–6 MVC的执行流程
查看>>
redis集群如何清理前缀相同的key
查看>>