#树#递归#二叉树的镜像

Posted lyr-2000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#树#递归#二叉树的镜像相关的知识,希望对你有一定的参考价值。

技术图片

 

 

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public TreeNode mirrorTree(TreeNode root) {
        return mirror(root);
    }
    TreeNode mirror(TreeNode root) {
        if(root == null) return root;
        TreeNode temp = root.left;
        root.left =  root.right;
        root.right = temp;
        mirror(root.left);
        mirror(root.right);
        return root;

    }
}

 

 

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public TreeNode mirrorTree(TreeNode root) {
        if(root == null) return root;
        Deque<TreeNode> q = new LinkedList<>();
        q.push(root);
        TreeNode temp = null;
        while(q.isEmpty() == false) {
            TreeNode parent = q.poll();
            temp  = parent.left;
            parent.left = parent.right;
            parent.right = temp;
            if(parent.left!=null) {
                q.offer(parent.left);
            }
            if(parent.right!=null) {
                q.offer(parent.right);
            }
        }
        return root;


    }
    
}

 

以上是关于#树#递归#二叉树的镜像的主要内容,如果未能解决你的问题,请参考以下文章

二叉树面试题刷题模板(终极版)

38. 二叉树的镜像

面试题:二叉树的镜像

二叉树(11)----求二叉树的镜像,递归和非递归方式

Leetcode二叉树专题(仅需7道题就可以带你入门二叉树基本玩法)

剑指offer 19:二叉树的镜像