Give a binary tree, elegantly print it so that no two tree nodes share the same column.
Requirement: left child should appear on the left column of root, and right child should appear on the right of root.
Example:
a
b c
d e f
z g h i jGive a binary tree, elegantly print it so t