6-4 统计二叉树度为1的结点个数 (10分)_数据结构实验5_羊卓的杨

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

函数接口定义:

int NodeCount ( BiTree T);

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

裁判测试程序样例:

#include 
#include 

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

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

答案样例:

//把上一个题稍微改一下就可以了 
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:羊卓的杨
公众号:羊卓的杨(后期上线实验报告功能)

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