首页 > 其他 > 详细

156. Binary Tree Upside Down

时间:2016-06-22 08:05:51      阅读:232      评论:0      收藏:0      [点我收藏+]

~~

 1     public TreeNode upsideDownBinaryTree(TreeNode root) {
 2         if(root == null) {
 3             return null;
 4         }
 5         return helper(root, null, null);
 6     }
 7     
 8     private TreeNode helper(TreeNode root, TreeNode parent, TreeNode sibling) {
 9         TreeNode left = root.left;
10         TreeNode right = root.right;
11         root.left = sibling;
12         root.right = parent;
13         if(left == null) {
14             return root;
15         }
16         return helper(left, root, right);
17     }

 

156. Binary Tree Upside Down

原文:http://www.cnblogs.com/warmland/p/5605711.html

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