【LeetCode热题100】--114.二叉树展开为链表

114.二叉树展开为链表

方法一:对二叉树进行先序遍历,得到各个节点被访问到的顺序,利用数组存储下来,然后在先序遍历之后更新每个节点的左右节点的信息,将二叉树展开为链表

java 复制代码
/**
 * 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) {
        List<TreeNode> list = new ArrayList<TreeNode>();
        preorderTraversal(root,list);
        int size = list.size();
        for(int i =  1;i<size;i++){
            TreeNode prev = list.get(i - 1),curr = list.get(i);
            prev.left = null;
            prev.right = curr;
        }
    }
    public void preorderTraversal(TreeNode root, List<TreeNode> list) {
        if (root != null) {
            list.add(root);
            preorderTraversal(root.left, list);
            preorderTraversal(root.right, list);
        }
    }

}

方法二:

java 复制代码
/**
 * 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;
        }
        // 1. 先将左子树展开为链表
        flatten(root.left);
        // 2. 将右子树展开为链表
        flatten(root.right);
        // 将左子树迁移到右子树中
        TreeNode node = root.left;
        if (node != null) {     
            // 如果左子树不为空
            // 3.1. 先找到左子树链表中的最右端的结点
            while (node.right != null) {
                node = node.right;
            }
            // 3.2. 将右子树插入到左子树的尾部结点
            node.right = root.right;
            // 3.3 将左子树换到右结点
            root.right = root.left;
            root.left = null;
        }
    }

}
相关推荐
凌波粒1 小时前
LeetCode--491.递增子序列(回溯算法)
数据结构·算法·leetcode
疯狂成瘾者2 小时前
Java 集合 LinkedList 详解:链表结构、常用方法和队列使用
java·开发语言·链表
退休倒计时2 小时前
【每日一题】LeetCode 146. LRU 缓存 TypeScript
算法·leetcode·缓存·typescript
WL学习笔记2 小时前
单项不带头不循环链表
数据结构·链表
小欣加油3 小时前
leetcode3612 用特殊操作处理字符串I
数据结构·c++·算法·leetcode·职场和发展
拳里剑气3 小时前
C++算法:链表
c++·算法·链表
凌波粒3 小时前
LeetCode--90.子集II(回溯算法)
数据结构·算法·leetcode
凌波粒3 小时前
LeetCode--46.全排列(回溯算法)
数据结构·算法·leetcode
吃着火锅x唱着歌3 小时前
LeetCode 2530.执行K次操作后的最大分数
数据结构·算法·leetcode
sheeta19984 小时前
LeetCode 每日一题笔记 日期:2026.06.16 题目:3612. 字符串特殊符号处理
笔记·算法·leetcode