6-3 统计二叉树叶子结点个数 (10分)

本题要求实现一个函数,可统计二叉树的叶子结点个数。

函数接口定义:

int LeafCount ( BiTree T);

T是二叉树树根指针,函数LeafCount返回二叉树中叶子结点个数,若树为空,则返回0。

裁判测试程序样例:

#include <stdio.h>
#include <stdlib.h>

typedef char ElemType;
typedef struct BiTNode
{
    ElemType data;
    struct BiTNode *lchild,*rchild;
}BiTNode,*BiTree;

BiTree Create();/* 细节在此不表 */

int LeafCount ( BiTree T);

int main()
{
    BiTree T = Create();

    printf("%d\n", LeafCount(T));
    return 0;
}
/* 你的代码将被嵌在这里 */

在这里插入图片描述

答案样例:

int LeafCount ( BiTree T) {
	int cnt=0;
	if(T!=NULL){
		cnt += LeafCount(T->lchild);//左子树的叶子节点个数 
		cnt += LeafCount(T->rchild);//右子树的叶子节点个数 
		if(T->lchild==NULL && T->rchild==NULL)//如果是叶子节点 
			cnt++;//那么就自加一 
	}
	return cnt; 
}

感谢你的点赞♥
哔哩哔哩/bilibili:羊卓的杨
公众号:羊卓的杨(后期上线实验报告功能)

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐