For example:
Given a binary tree
{1,2,3,4,5}
,1 / \ 2 3 / \ 4 5return the root of the binary tree
[4,5,2,#,#,3,1]
.4 / \ 5 2 / \ 3 1
confused what
"{1,#,2,3}"
means? > read more on how binary tree is serialized on OJ./** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ public class Solution { public TreeNode UpsideDownBinaryTree(TreeNode root) { TreeNode node = root, parent = null, parentRight = null; while (node != null) { TreeNode left = node.left; node.left = parentRight; // Kernel statement parentRight = node.right; node.right = parent; // Kernel statement parent = node; // From top to down node = left; // Along with left side } return parent; } }
No comments:
Post a Comment