操作给定的二叉树,将其变换为源二叉树的镜像。
function Mirror(root) {
if(root === null) {
return
}
[root.left, root.right] = [root.right, root.left]
Mirror(root.left)
Mirror(root.right)
}
操作给定的二叉树,将其变换为源二叉树的镜像。
function Mirror(root) {
if(root === null) {
return
}
[root.left, root.right] = [root.right, root.left]
Mirror(root.left)
Mirror(root.right)
}
本文标题:二叉树的镜像
本文链接:https://www.haomeiwen.com/subject/cgpznftx.html
网友评论