DIY: Binary Tree Level Order Traversal
Solve the interview question "Binary Tree Level Order Traversal" in this lesson.
We'll cover the following...
Problem statement
Given a binary tree, populate an array to represent its level-by-level traversal. You should populate the values of each levels’ nodes from left to right in separate ...