翻转二叉树或镜像二叉树

Posted yingpu

tags:

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

TreeNode mirrorTreeNode(TreeNode root){
        if(root == null){
            return null;
        }
        TreeNode left = mirrorTreeNode(root.left);
        TreeNode right = mirrorTreeNode(root.right);
        root.left = right;
        root.right = left;
        return root;
    }


 


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

算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)

算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)

剑指offer-二叉树的镜像

LeetCode226. 翻转二叉树

讲透学烂二叉树:二叉树的笔试题:翻转|宽度|深度

LeetCode Java刷题笔记—226. 翻转二叉树