算法 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
虫虫下载站 半导体技术网 电子研发网 源码地带 电源技术网 单片机技术网 医疗电子技术 嵌入式系统与单片机