Esempio n. 1
0
 private void DoPrint(Node r)
 {
     r.Print();
     if (r.Left != null)
         DoPrint(r.Left);
     if (r.Right != null)
         DoPrint(r.Right);
 }