摘要:翻转以后如下解题思路翻转的形式一开始不是很清楚,但是里面的高票答案给了一个很好的解释。看例子,树的左边最深的底层是,是新的。对于每个,将链接右孩子的指针去掉,将变为当前左孩子的,成为左孩子的。递归的写法递归调用得到新的,并且沿途改变结构。
LeetCode 156 Binary Tree Upside Down
Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares the same parent node) or empty, flip it upside down and turn it into a tree where the original right nodes turned into left leaf nodes. Return the new root.
Example:
Input: [1,2,3,4,5]
1 / 2 3 / 4 5
Output: return the root of the binary tree [4,5,2,#,#,3,1]
翻转以后如下:
4 / 5 2 / 3 1
解题思路:
翻转的形式一开始不是很清楚,但是discuss里面的高票答案给了一个很好的解释。看例子,树的左边最深的底层是4,4是新的root。对于每个root node,将链接右孩子的指针去掉,将root node变为当前左孩子的left node,root node成为左孩子的right node。
1 / x 2 -- 3 / x 4 -- 5 ^ new root
递归的写法:
public TreeNode upsideDownBinaryTree(TreeNode root) { if (root == null || root.left == null) { return root; } //递归调用得到新的root,并且沿途改变结构。 TreeNode newRoot = upsideDownBinaryTree(root.left); root.left.left = root.right; root.left.right = root; //千万记得将root node 的左右两边设为null root.left = null; root.right = null; return newRoot; }
遍历的解法
遍历的解法需要四个指针,如图所示,每次先update next,然后对swap上一个node的右孩子和这个node的左孩子,所以每次我们需要一个temp来记录上一个node的右边孩子。
prev -> 1 / x curr -> 2 -- 3 <-temp / x next-> 4 -- 5 ^ new root
代码如下
public TreeNode upsideDownBinaryTree(TreeNode root) { //iterative TreeNode curr = root; TreeNode prev = null; TreeNode next = null; TreeNode temp = null; while(curr != null) { next = curr.left; //swap nodes, we need to keep a temp to track the right node curr.left = temp; temp = curr.right; curr.right = prev; prev = curr; curr = next; } return prev;
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/71794.html
摘要:原题链接递归法复杂度时间空间递归栈空间思路这个难倒大神的题也是非常经典的一道测试对二叉树遍历理解的题。递归的终止条件是当遇到空节点或叶子节点时,不再交换,直接返回该节点。代码给出的是后序遍历的自下而上的交换,先序遍历的话就是自上而下的交换。 Invert Binary Tree Invert a binary tree. 4 / 2 7 / ...
摘要:算法思路判断树是否为空同时也是终止条件。分别对左右子树进行递归。代码实现判断当前树是否为左右子树结点交换分别对左右子树进行递归返回树的根节点欢迎一起加入到开源仓库,可以向提交您其他语言的代码。 Time:2019/4/21Title: Invert Binary TreeDifficulty: EasyAuthor: 小鹿 题目:Invert Binary Tree(反转二叉树) ...
LeetCode 104 Maximum Depth of Binary Tree难度:Easy 题目描述:找到一颗二叉树的最深深度。Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down ...
摘要:在线网站地址我的微信公众号完整题目列表从年月日起,每天更新一题,顺序从易到难,目前已更新个题。这是项目地址欢迎一起交流学习。 这篇文章记录我练习的 LeetCode 题目,语言 JavaScript。 在线网站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公众号: showImg(htt...
阅读 1820·2021-11-19 09:40
阅读 2091·2021-10-09 09:43
阅读 3148·2021-09-06 15:00
阅读 2786·2019-08-29 13:04
阅读 2731·2019-08-26 11:53
阅读 3448·2019-08-26 11:46
阅读 2294·2019-08-26 11:38
阅读 363·2019-08-26 11:27