Learn
Practice
Newsletter
Resources
Animations
New
F
Toggle theme
0
F
0
Toggle menu
← Back to All Animations
Flatten Binary Tree to Linked List
Bookmark
Input
Example Tree
Simple Tree
Right-Skewed
Left-Skewed
Custom
tree
=
[1, 2, 5, 3, 4, null, 6]
1
2
5
3
4
6
list
flatten into a right-only preorder chain
algo
master
.
io
Step:
Start: flatten the tree into a right-only chain in preorder order
0 / 22
Input
Example Tree
Simple Tree
Right-Skewed
Left-Skewed
Custom
tree
=
[1, 2, 5, 3, 4, null, 6]
0 / 22
1
2
5
3
4
6
list
flatten into a right-only preorder chain
algo
master
.
io
Step:
Start: flatten the tree into a right-only chain in preorder order