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

<剑指offer> 第16题

时间:2019-08-10 09:28:58      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:node   span   tee   它的   函数   mirror   ati   off   ror   

题目:

输入一个函数,输入一个二叉树,该函数输出它的镜像

代码:

public class Sixteenth {
  
public static class BinaryTreeNode{
        BinaryTreeNode leftChild;
        BinaryTreeNode rightChild;
        int val;
    }
    public static void getMirrorBinaryTree(BinaryTreeNode node){
        if(node != null){
            BinaryTreeNode temp = node.leftChild;
            node.leftChild = node.rightChild;
            node.rightChild = temp;

            getMirrorBinaryTree(node.leftChild);
            getMirrorBinaryTree(node.rightChild);
        }
    }

}

 

<剑指offer> 第16题

标签:node   span   tee   它的   函数   mirror   ati   off   ror   

原文地址:https://www.cnblogs.com/HarSong13/p/11330480.html

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