二叉树:计算叶子节点个数

2022-02-24 19:29:07 浏览数 (1)

叶子节点的特征:左右孩子均为NULL

代码语言:javascript复制
struct node {
	int val;
	node *left, *right;
};

int countLeaf(node *root) {
	if (!root)  return 0;
	else {
		if (!root->left && !root->right) return 1;
		return countLeaf(root->left)   countLeaf(root->right);
	}
}

0 人点赞