int
Depth(Bstree* bt)
{
m=0,n=0;
if
(bt==NULL)
return
0;
}
else
m=Depth(bt->lchild);
m=Depth(bt->rchild);
(m>n?m:n)+1;