二叉树是递归定义的,其运算最好采取递归方式
  int Height(btre bt)//求二叉树bt的深度
{int hl,hr;
if (bt==null) return(0);
else {hl=Height(bt->lch); hr=Height(bt->rch);
if(hl>hr) return (hl+1); else return(hr+1);
 }  }