//ORDEM - Recebe a arvore como parametro
 public void inOrder(Node theRoot)
 {
     if (!(theRoot == null))
     {
         inOrder(theRoot.Left);
         theRoot.DisplayNode();
         inOrder(theRoot.Right);
     }
 }
 //PRE-ORDEM - Recebe a arvore como parametro
 public void preOrder(Node theRoot)
 {
     if (!(theRoot == null))
     {
         theRoot.DisplayNode();
         preOrder(theRoot.Left);
         preOrder(theRoot.Right);
     }
 }