6-4 统计二叉树度为1的结点个数 (10分)

函数接口定义:

int NodeCount ( BiTree T);

T是二叉树树根指针,函数NodeCount返回二叉树中度为1的结点个数,若树为空,返回0。

裁判测试程序样例:

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

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

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

int NodeCount ( BiTree T);

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

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

在这里插入图片描述

答案样例:

//把上一个题稍微改一下就可以了 
int NodeCount ( BiTree T){
	int cnt=0;
	if(T!=NULL){
		cnt += NodeCount(T->lchild);//加上左子树上度为1的结点个数 
		cnt += NodeCount(T->rchild);//加上右子树上度为1的结点个数
		if((T->lchild==NULL&&T->rchild!=NULL) || (T->lchild!=NULL&&T->rchild==NULL))//判断一下如果是度数为1的结点 
			cnt++;//那就加1 
	}
	return cnt;
}

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

Logo

北京人形旗下天工造物具身智能开源社区,聚焦具身天工与慧思开物两大平台

更多推荐