早教吧 育儿知识 作业答案 考试题库 百科 知识分享

求二叉树中叶结点个数的函数

题目详情
求二叉树中叶结点个数的函数
▼优质解答
答案和解析
//计算二叉树中叶子结点的个数
int LeafCount (BiTree T)
{ int m,n;
if ( !T ) return 0;
if (!T->lchild&& !T->rchild)
return 1;
else{
m=LeafCount( T->lchild);
n=LeafCount( T->rchild);
return (m+n);
} // if
return OK;
} //----------