剑指Offer第十八题:二叉树的镜像

二叉树的镜像

https://www.nowcoder.com/practice/564f4c26aa584921bc75623e48ca3011?tpId=13&tqId=11171&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking

题目描述
操作给定的二叉树,将其变换为源二叉树的镜像。
输入描述:
二叉树的镜像定义:源二叉树

        8
       /  \
      6   10
     / \  / \
    5  7 9 11
    镜像二叉树
        8
       /  \
      10   6
     / \  / \
    11 9 7  5

解答 :
public class Q_18 {

public void Mirror(TreeNode root) {
    if(root!=null){
        TreeNode left=root.left;
        TreeNode right=root.right;
        if(left!=null){
            Mirror(left);
        }
        if(right!=null){
            Mirror(right);
        }
        if(left!=null||right!=null){
            root.left=right;
            root.right=left;
        }
    }
}

}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务