编写一个函数计算给定的2杈树中叶接点的个数
编写一个函数计算给定的2杈树中叶接点的个数
int countleaf(bitree t)
{
if(t == NULL) return (0);
else
{if((t->lchild == NULL)&&(t->rchild == NULL))
return (1);
else return(countleaf(t->lchild)+countleaf(t->rchild));}
}