Marusyk/BinaryTree

Add a pretty print function

Marusyk opened this issue · 2 comments

Requirement:

var binaryTree = new BinaryTree<int> { 8, 5, 12, 3, 7, 10, 15 };
binaryTree.Print();

Result

       8
    /    \
  12       5
 /  \    /  \
15  10   7   3

@Marusyk Working on it. Will Submit a PR shortly.