Leetcode#114. Flatten Binary Tree to Linked List
Problem
Given the root
of a binary tree, flatten the tree into a “linked list”:
- The “linked list” should use the same
TreeNode
class where theright
child pointer points to the next node in the list and theleft
child pointer is alwaysnull
. - The “linked list” should be in the same order as a pre-order traversal of the binary tree.
Example 1:
!https://assets.leetcode.com/uploads/2021/01/14/flaten.jpg
1 | Input: root = [1,2,5,3,4,null,6] |
Example 2:
1 | Input: root = [] |
Example 3:
1 | Input: root = [0] |
Constraints:
- The number of nodes in the tree is in the range
[0, 2000]
. 100 <= Node.val <= 100
Follow up:
Can you flatten the tree in-place (with
1 | O(1) |
extra space)?
Solve
前幾次試錯直接對(,,・ω・,,)
想法沒錯後,直接DFS
1 | # Definition for a binary tree node. |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論