码迷,mamicode.com
首页 > 其他好文 > 详细

二叉树的镜像

时间:2018-07-09 11:07:52      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:ror   ==   amp   void   span   color   style   node   树的镜像   

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);
        }
    }

 

二叉树的镜像

标签:ror   ==   amp   void   span   color   style   node   树的镜像   

原文地址:https://www.cnblogs.com/yingpu/p/9282028.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!