forked from szl0072/Leetcode-Solution-Code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBinaryTreeUpsideDown.java
57 lines (51 loc) · 1.31 KB
/
BinaryTreeUpsideDown.java
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package leetcode;
/**
* Project Name : Leetcode
* Package Name : leetcode
* File Name : BinaryTreeUpsideDown
* Creator : Edward
* Date : Aug, 2017
* Description : TODO
*/
public class BinaryTreeUpsideDown {
/**
* 156. Binary Tree Upside Down
* Given a binary tree where all the right nodes are either leaf nodes with a
* sibling (a left node that shares the same parent node) or empty,
* flip it upside down and turn it into a tree where the original right nodes
* turned into left leaf nodes. Return the new root.
For example:
Given a binary tree {1,2,3,4,5},
1
/ \
2 3
/ \
4 5
return the root of the binary tree [4,5,2,#,#,3,1].
4
/ \
5 2
/ \
3 1
1 1
/ \ /
2 3 2 - 3
/ \ /
4 5 4 - 5
time : O(n);
space : O(n);
* @param root
* @return
*/
public TreeNode upsideDownBinaryTree(TreeNode root) {
if (root == null || root.left == null && root.right == null) {
return root;
}
TreeNode newRoot = upsideDownBinaryTree(root.left);
root.left.left = root.right;
root.left.right = root;
root.left = null;
root.right = null;
return newRoot;
}
}