Hi,

With regards to the title above..

Objective is to store and print out a binary tree.
Does anyone know how to format and print out a TreeNode/Node?

For instance, got a TreeNode with the data: [1, 2, 3, 4, 5, 6]

              1
            /   \
          2     3
         / \    /
        4  5  6