public static void TestBinTree2(BinTree tree, int x)
 {
     if (tree == null)
     {
         return;
     }
     tree.Add2(x);
 }