牛客题霸 NC26 括号生成
Posted Starzkg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了牛客题霸 NC26 括号生成相关的知识,希望对你有一定的参考价值。
https://www.nowcoder.com/practice/c9addb265cdf4cdd92c092c655d164ca
解决方案
Go
版本一
func generateParenthesis(n int) []string {
// write code here
dfs(0, 0, []byte{}, n)
return rs
}
var rs []string
func dfs(left, right int, path []byte, n int) {
if left == right && left == n {
rs = append(rs, string(path))
return
}
if left < n {
dfs(left+1, right, append(path, '('), n)
}
if left > right {
dfs(left, right+1, append(path, ')'), n)
}
}
参考文章
以上是关于牛客题霸 NC26 括号生成的主要内容,如果未能解决你的问题,请参考以下文章