Exemplo n.º 1
0
        void PrintByInorder(IBinaryNode <T> node)
        {
            if (node == null)
            {
                return;
            }
            var left  = node.Left;
            var right = node.Right;

            PrintByPostorder(left);
            System.Console.Write(" " + node.ToString());
            PrintByPostorder(right);
        }