Flatten Binary Tree to Linked List
Given a binary tree, flatten it to a linked list in-place.
Example
For example, given the following tree:
1
/ \
2 5
/ \ \
3 4 6The flattened tree should look like:
1
\
2
\
3
\
4
\
5
\
6Note
都是在右边,所以先处理右侧
Code
Last updated