猿问
编写递归算法,计算二叉树中叶子结点的数目。?
编写递归算法,计算二叉树中叶子结点的数目。
蓝山帝景
浏览 1960
回答 2
2回答
侃侃无极
Leaf_Num(BTnode *BT){if(BT==NULL) return 0;if(BT->left==NULL && BT->right==NULL) return 1;else return Leaf_Num(BT->left)+Leaf_Num(BT->right);}
0
0
0
随时随地看视频
慕课网APP
相关分类
C++
typedef入门问题
1 回答
我要回答