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:
The flattened tree should look like:
Note
都是在右边,所以先处理右侧
Code
Last updated
Given a binary tree, flatten it to a linked list in-place.
For example, given the following tree:
The flattened tree should look like:
都是在右边,所以先处理右侧
Last updated