首页 > 其他 > 详细

[leetcode] Binary Tree Upside Down

时间:2017-09-05 01:12:30      阅读:246      评论:0      收藏:0      [点我收藏+]

 

思路:递归实现,注意翻转的规律,以左子树作为根,找到左子树最右边的节点作为原有right子树和根的父节点。

 

class Solution {
    public TreeNode upsideDownBinaryTree(TreeNode root) {
        if (root ==null || root.left ==null && root.right ==null)
            return root;
        TreeNode left = upsideDownBinaryTree(root.left);
        TreeNode right = upsideDownBinaryTree(root.right);
        TreeNode leftRightest = left;
        while(leftRightest.right != null){
            leftRightest = leftRightest.right;
        }
        leftRightest.left = right;
        leftRightest.right = root;
        root.left = null;
        root.right = null;
        
        return left;
    }
}

 

[leetcode] Binary Tree Upside Down

原文:http://www.cnblogs.com/jdflyfly/p/7476353.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!