Last updated
Was this helpful?
Last updated
Was this helpful?
Given a binary tree
Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be set toNULL
.
Initially, all next pointers are set toNULL
.
Note:
You may only use constant extra space.
Recursive approach is fine, implicit stack space does not count as extra space for this problem.
Example:
Given the following binary tree,
After calling your function, the tree should look like:
分析
BFS,最后一个node记得用i== n-1判断
利用链表特性。每层都建个dummy。然后dummy指向前一层root。左右依次加入链表
DFS Recursive