...
/DIY: Populating Next Right Pointers in Each Node
DIY: Populating Next Right Pointers in Each Node
Solve the interview question "Populating Next Right Pointers in Each Node" in this lesson.
We'll cover the following...
Problem statement
You are given a perfect binary tree where all the leaves are on the same level and every parent has two children. We have added an additional next
pointer to our TreeNode
implementation.
Populate ...