剑指offer(18)二叉树镜像

/**
public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;

    }

}
*/
public class Solution {
    public void Mirror(TreeNode root) {
        if(root == null){return;}
        if(root.left == null && root.right == null){return;}
        TreeNode node = root.left;
        root.left = root.right;
        root.right = node;
        if(root.left!=null){Mirror(root.left);}
        if(root.right!=null){Mirror(root.right);}
        
    }
}

全部评论

相关推荐

头像
11-07 01:12
重庆大学 Java
精致的小松鼠人狠话不多:签哪了哥
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务