《数据结构及应用算法教程》一书的源代码。作者:严蔚敏

源代码在线查看: 算法 6.4.txt

软件大小: 707 K
上传用户: jinhongfei0528
关键词: 数据结构 教程 算法 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				算法 6.4
				void BiTreeDepth(BiTree T, int h, int &depth){
				  // h为T指向的结点所在层次,T指向二叉树的根,则h的初值为1,
				  // depth为当前求得的最大层次,其初值为0
				  if (T){
				    if (h>depth)  depth=h;                
				    BiTreeDepth(T->lchild, h+1, depth);
				    BiTreeDepth(T->rchild, h+1, depth);
				  }
				}//BiTreeDepth			

相关资源