void in(BinaryTreeNode<T> *t,int a[])
   {
   
   if(root&&(k==0)) {k++; t=root;}
   i++;
   if(t){in(t->LeftChild,a);
   a[i]=t->data;
   cout<<t->data;
   
   in(t->RightChild,a);
   }
   }