【Leetcode刷题篇】- Leetcode114 二叉树展开为链表
程序员文章站
2022-05-21 19:26:44
...
给你二叉树的根结点 root ,请你将它展开为一个单链表:
展开后的单链表应该同样使用 TreeNode ,其中 right 子指针指向链表中下一个结点,而左子指针始终为 null 。
展开后的单链表应该与二叉树 先序遍历 顺序相同。
示例 1:
输入:root = [1,2,5,3,4,null,6]
输出:[1,null,2,null,3,null,4,null,5,null,6]
解题思路:二叉树展开为链表
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
// 二叉树展开为链表
public void flatten(TreeNode root) {
if(root==null){
return;
}
// 左边展开右边展开
flatten(root.left);
flatten(root.right);
// 保存
TreeNode left = root.left;
TreeNode right = root.right;
root.left = null;
// 连接
root.right = left;
TreeNode cur = root;
while(cur.right!=null){
cur = cur.right;
}
cur.right = right;
}
}
上一篇: Spring 延迟初始化
推荐阅读
-
Leetcode算法【114. 二叉树展开为链表】
-
【Leetcode刷题篇】leetcode236 二叉树的最近公共祖先
-
Leetcode算法【114. 二叉树展开为链表】
-
【Leetcode刷题篇】- Leetcode114 二叉树展开为链表
-
LeetCode0114-二叉树展开为链表
-
LeetCode 114.Flatten Binary Tree to Linked List (二叉树展开为链表)
-
Leetcode刷题java之114. 二叉树展开为链表
-
LeetCode 114. 二叉树展开为链表 | Python
-
【Leetcode刷题篇】leetcode543 二叉树的直径
-
【Leetcode刷题篇】leetcode662 二叉树最大宽度