public void Postorder()
 {
     if (root != null)
     {
         root.Postorder();
     }
 }
 public void Postorder()
 {
     if (left != null)
     {
         left.Postorder();
     }
     if (right != null)
     {
         right.Postorder();
     }
     WriteLine(data);
 }