Meta Interview Question

Given a binary tree, write code to print the tree out line by line

Interview Answer

Anonymous

Sep 8, 2014

So basically a level-order print out? You can use breadth first search for that.