二叉树的镜像
Posted yingpu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉树的镜像相关的知识,希望对你有一定的参考价值。
public void Mirror(Node node){ if(node == null){ return; } if(node.left==null && node.right == null){ return; } Node temp = node.left; node.left = node.right; node.right = temp; if(node.left!=null){ Mirror(node.left); } if(node.right!=null){ Mirror(node.right); } }
以上是关于二叉树的镜像的主要内容,如果未能解决你的问题,请参考以下文章