Leetcode刷题java之114. 二叉树展开为链表
程序员文章站
2022-05-21 19:18:36
...
执行结果:
通过
显示详情
执行用时 :0 ms, 在所有 Java 提交中击败了100.00% 的用户
内存消耗 :35.8 MB, 在所有 Java 提交中击败了86.84%的用户
题目:
给定一个二叉树,原地将它展开为链表。
例如,给定二叉树
1
/ \
2 5
/ \ \
3 4 6
将其展开为:
1
\
2
\
3
\
4
\
5
\
6
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/flatten-binary-tree-to-linked-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路:
有点嫁接的意味,找到左子树的最右节点,然后让他的最右节点等于根的右节点,然后让根的右节点等于根的左节点。
代码:
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public void flatten(TreeNode root) {
while(root!=null)
{
if(root.left==null)
{
root=root.right;
}else
{
TreeNode pre=root.left;
while(pre.right!=null)
{
pre=pre.right;
}
pre.right=root.right;
root.right=root.left;
root.left=null;
root=root.right;
}
}
}
}
推荐阅读
-
Leetcode算法【114. 二叉树展开为链表】
-
【Leetcode刷题篇】- Leetcode114 二叉树展开为链表
-
Leetcode刷题java之114. 二叉树展开为链表
-
LeetCode 114. 二叉树展开为链表 | Python
-
Leetcode刷题java之617. 合并二叉树
-
Leetcode刷题java之23. 合并K个排序链表(一天一道编程题之四十天)(优先队列)
-
【leetcode】114. 二叉树展开为链表(Flatten Binary Tree to Linked List)(DFS)
-
leetcode-cpp 114.二叉树展开为链表
-
LeetCode 114. Flatten Binary Tree to Linked List 二叉树展开为链表(Java)