Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.34 KB

0114. 二叉树展开为链表.java.md

File metadata and controls

49 lines (41 loc) · 1.34 KB

114. 二叉树展开为链表

给你二叉树的根结点 root ,请你将它展开为一个单链表:

展开后的单链表应该同样使用 TreeNode ,其中 right 子指针指向链表中下一个结点,而左子指针始终为 null 。 展开后的单链表应该与二叉树 先序遍历 顺序相同。

来源:力扣(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() {}
 *     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) {
        while (root != null) {
            TreeNode node = root.left;
            if (node != null) {
                while (node != null && node.right != null) {
                    node = node.right;
                }

                node.right = root.right;
                root.right = root.left;
                root.left = null;
            }
            root = root.right;
        }
    }
}