猿问

编写递归算法,计算二叉树中叶子结点的数目。?

编写递归算法,计算二叉树中叶子结点的数目。


蓝山帝景
浏览 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);}
随时随地看视频慕课网APP
我要回答