剑指offer28题

Posted Cloudstrife

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer28题相关的知识,希望对你有一定的参考价值。

题目描述

操作给定的二叉树,将其变换为源二叉树的镜像。

输入描述:

二叉树的镜像定义:源二叉树 
    	    8
    	   /      	  6   10
    	 / \  /     	5  7 9 11
    	镜像二叉树
    	    8
    	   /      	  10   6
    	 / \  /     	11 9 7  5
废话不多说,直接强行上代码。树的创建和打印已经封装好,直接调用。
package com.algorithm04;

import com.tools.TreeBinaryFunction;
import com.tools.TreeNode;


public class Algorithm27 {
    
    public static void Mirror(TreeNode root){
        if(root!=null){
            TreeNode temp = new TreeNode(0);
            temp = root.left;
            root.left = root.right;
            root.right = temp;
            if(root.left!=null)
                Mirror(root.left);
            if(root.right!=null)
                Mirror(root.right);
        }
        
    }
    
    public static void main(String[] args) {
        TreeNode treeNode = new TreeNode(0);
        treeNode = TreeBinaryFunction.CreateTreeBinary(treeNode);
        Mirror(treeNode);
        TreeBinaryFunction.PrintTreeBinary(treeNode);
    }
    
}

 

以上是关于剑指offer28题的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer面试题 28. 对称的二叉树

剑指offer28题

乱序版 ● 剑指offer每日算法题打卡题解—— 搜索与回溯算法 (题号26,27, 28)

剑指Offer面试题28. 对称的二叉树

[剑指offer]面试题28:字符串的排列

剑指Offer - 面试题28:对称的二叉树