牛客题霸 NC16 判断二叉树是否对称
Posted Starzkg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了牛客题霸 NC16 判断二叉树是否对称相关的知识,希望对你有一定的参考价值。
https://www.nowcoder.com/practice/1b0b7f371eae4204bc4a7570c84c2de1
解决方案
Go
func isSymmetric(root *TreeNode) bool {
// write code here
if root == nil {
return true
}
return symmetric(root.Left, root.Right)
}
func symmetric(a, b *TreeNode) bool {
if a == nil && b == nil {
return true
}
if a != nil && b != nil {
return a.Val == b.Val && symmetric(a.Left, b.Right) && symmetric(a.Right, b.Left)
}
return false
}
参考文章
以上是关于牛客题霸 NC16 判断二叉树是否对称的主要内容,如果未能解决你的问题,请参考以下文章