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