1 Star 0 Fork 0

HanYong/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
22.括号生成.go 528 Bytes
一键复制 编辑 原始数据 按行查看 历史
HanYong 提交于 2022-02-15 15:21 . generate-parentheses
/*
* @lc app=leetcode.cn id=22 lang=golang
*
* [22] 括号生成
*/
// @lc code=start
func generateParenthesis(n int) (res []string) {
var str string
var generate func(left, right int)
generate = func(left, right int) {
if len(str) == 2*n {
res = append(res, str)
return
}
if left < n {
str = str + "("
generate(left+1, right)
str = str[:len(str)-1]
}
if right < left {
str = str + ")"
generate(left, right+1)
str = str[:len(str)-1]
}
}
generate(0, 0)
return
}
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yinhu000/leetcode.git
[email protected]:yinhu000/leetcode.git
yinhu000
leetcode
leetcode
master

搜索帮助