-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflatten.java
More file actions
49 lines (42 loc) · 911 Bytes
/
flatten.java
File metadata and controls
49 lines (42 loc) · 911 Bytes
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
/*
Given a binary tree, flatten it to a linked list in-place.
Example :
Given
1
/ \
2 5
/ \ \
3 4 6
The flattened tree should look like:
1
\
2
\
3
\
4
\
5
\
6
Note that the left child of all nodes should be NULL
*/
public TreeNode flatten(TreeNode a) {
if (a == null || (a.left == null && a.right == null))
return a;
TreeNode root = a, t=a;
while (root.left!=null || root.right!=null) {
a = root;
if (a.left != null) {
TreeNode temp = a.right;
a.right = a.left;
while (a.right != null)
a = a.right;
a.right = temp;
root.left = null;
}
root= root.right;
}
return t;
}
}