数据结构各种算法原代码及图形示例

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

软件大小: 1398 K
上传用户: taiyubao
关键词: 数据结构 代码 图形 算法
下载地址: 免注册下载 普通下载 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			

相关资源