6-3 统计二叉树叶子结点个数 (10分)_数据结构实验5_羊卓的杨

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

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

函数接口定义:

int LeafCount ( BiTree T);

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

裁判测试程序样例:

#include 
#include 

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;
}
/* 你的代码将被嵌在这里 */

6-3 统计二叉树叶子结点个数 (10分)_数据结构实验5_羊卓的杨_第1张图片

答案样例:

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:羊卓的杨
公众号:羊卓的杨(后期上线实验报告功能)

你可能感兴趣的:(【数据结构实验_青岛大学】,数据结构,二叉树,链表)