遞歸算法--二叉樹中葉子結點

int Degree0(BitNode *t){html

if(t==null) 
    
    return 0;

if(t->lchild==null&&t->rchild==null)
    
    return 1;

return Degree0(t->lchild)+Degree0(t->rchild);

}算法


您可能感興趣的
code

相關文章
相關標籤/搜索