int j=0;//能不能用j获得一个二叉树的深度 Status BiTreeDepth(BiTree T,int i)//用的链式存储结构 { if(T==NULL) { return OK; } if(j<i) j=i; BiTreeDepth(T->lchild,i+1); BiTreeDepth(T->rchild,i+1); }