nested tree code example
Example: nested binary tree
(1 (2 3 4)(5 6 7)) represents following binary tree
1
/ \
2 5
/ \ / \
3 4 6 7
(1 (2 3 4)(5 6 7)) represents following binary tree
1
/ \
2 5
/ \ / \
3 4 6 7