问题
填空题
以下程序段采用先根遍历方法求二叉树的叶子数,请在______处填充适当的语句。 void countleaf(bitreptr t,int*count)/*根指针为t,假定叶子数count的初值为0*/ { if(t!=NULL) { if((t—>lchild==NULL)&&(t—>rchild==NULL))______;countleaf(1—>lehild,count); ______; } }
答案
参考答案:*count++ eountleaf(A—>rehild,count)