美文网首页算法代码
二叉树展开为链表

二叉树展开为链表

作者: windUtterance | 来源:发表于2020-06-11 11:05 被阅读0次

题目描述
给定一个二叉树,原地将它展开为一个单链表。

示例
例如,给定二叉树

1
/ \
2 5
/ \ \
3 4 6
将其展开为:

1
\
2
\
3
\
4
\
5
\
6
解法分别三步:
1.将左子树插到右子树的地方
2.将原来的右子树接到左子树的最右边节点
3.考虑新的右子树节点,一直重复上述过程,直到新的右子树为null
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) {
        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;
            }
        }
    }
}

相关文章

网友评论

    本文标题:二叉树展开为链表

    本文链接:https://www.haomeiwen.com/subject/lnevtktx.html