摘要:题目要求将一棵二叉树展开形成一棵链表形状的树。本质上是将该树转变成先序遍历后的样子。所以这个例题一步步的操作如下代码如下思路二递归其实这里的思路等价于反转的先序遍历。自底向上深度优先遍历,这要求将前序遍历的头结点通过临时变量保存一下。
题目要求
Given a binary tree, flatten it to a linked list in-place. For example, Given 1 / 2 5 / 3 4 6 The flattened tree should look like: 1 2 3 4 5 6 click to show hints. Hints: If you notice carefully in the flattened tree, each node"s right child points to the next node of a pre-order traversal.
将一棵二叉树展开形成一棵链表形状的树。本质上是将该树转变成先序遍历后的样子。
思路一:非递归如果我们从图形的角度来说,每一次都将当前节点的右子树拼接到左子节点的右子树下,再将左节点替换原来的右节点。所以这个例题一步步的操作如下:
1 1 1 / 2 5 2 2 / / 3 4 6 3 4 3 5 4 6 5 6
代码如下:
public void flatten(TreeNode root) { if(root==null) return; TreeNode temp = root; TreeNode current = root; while(current!=null){ if(current.left!=null){ temp = current.left; while(temp.right!=null) temp = temp.right; temp.right = current.right; current.right = current.left; current.left = null; } current = current.right; } }思路二:递归
其实这里的思路等价于反转的先序遍历。自底向上深度优先遍历,这要求将前序遍历的头结点通过临时变量保存一下。代码如下:
TreeNode pre = null; public void flatten2(TreeNode root) { if(root==null) return; flatten(root.right); flatten(root.left); root.left = null; root.right = pre; pre = root; }
想要了解更多开发技术,面试教程以及互联网公司内推,欢迎关注我的微信公众号!将会不定期的发放福利哦~
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/67556.html
摘要:思路这题相当于是当的时候,关键是要知道要被连接的的前面的一个这样才可以把接上。用一路做到底,当做到的时候,左边返回右边也返回,这时返回自己成为同样接着继续做。 Flatten Binary Tree to Linked List Flatten a binary tree to a fake linked list in pre-order traversal.Here we use ...
摘要:栈法复杂度时间空间思路对于一个根节点,我们将它的右子树压进一个栈中,然后将它的左子树放到右边来。如果该节点没有左子树,说明该节点是某个左子树的最后一个节点,我们这时候把栈中最近的右子树出来接到它的右边。 Flatten Binary Tree to Linked List Given a binary tree, flatten it to a linked list in-plac...
Problem Flatten a binary tree to a fake linked list in pre-order traversal.Here we use the right pointer in TreeNode as the next pointer in ListNode. Example 1 1 ...
摘要:在线网站地址我的微信公众号完整题目列表从年月日起,每天更新一题,顺序从易到难,目前已更新个题。这是项目地址欢迎一起交流学习。 这篇文章记录我练习的 LeetCode 题目,语言 JavaScript。 在线网站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公众号: showImg(htt...
摘要:月下半旬攻略道题,目前已攻略题。目前简单难度攻略已经到题,所以后面会调整自己,在刷算法与数据结构的同时,攻略中等难度的题目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道题,目前已攻略 100 题。 一 目录 不折腾的前端,和咸鱼有什么区别...
阅读 3095·2021-11-10 11:36
阅读 3105·2021-11-02 14:39
阅读 1675·2021-09-26 10:11
阅读 4785·2021-09-22 15:57
阅读 1648·2021-09-09 11:36
阅读 2024·2019-08-30 12:56
阅读 3455·2019-08-30 11:17
阅读 1663·2019-08-29 17:17