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

Generate Parentheses

时间:2015-03-09 09:18:50      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

Generate Parentheses

问题:

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

我的代码:

 

 

学习之处:

  • 此问题最终转化成了二叉树的问题,二叉树的遍历用DFS,二叉树如下图所示。
  • 递归方程的写法,画图即可明了,left > 0 继续加“(” left < right的时候 加上“)”。
  • 确定递归方程看前两行就可以了,实际程序如何压栈,弹栈,仔细考虑一下,便很清楚明了了。

技术分享

Generate Parentheses

标签:

原文地址:http://www.cnblogs.com/sunshisonghit/p/4322701.html

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