Hi,
Does anyone know a function that prints out binary tree in this form
example :
................15
.........12.............17
.......10 14.........16 18
?
my Node class :
class Node
{
double Node_Data;
Node Left_Child;
Node Right_Child;
Node Parent;
}