Given a binary tree, flatten it to a linked list in-place.
For example,
Given
Given
1 / \ 2 5 / \ \ 3 4 6
1 \ 2 \ 3 \ 4 \ 5 \ 6
Hints:
If you notice carefully in the flattened tree, each node's right child points to the next node of a pre-order traversal.
Solution: The observation is that the desired linked list is a concatenation of root, flatten(root.left), and flatten(root.right).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ public class Solution { public void flatten(TreeNode root) { if (root == null) { return; } flatten(root.right); if (root.left == null) { return; } flatten(root.left); TreeNode p = root.left; while (p.right != null) { p = p.right; } p.right = root.right; root.right = root.left; root.left = null; return; } } |
No comments:
Post a Comment