二叉树计算叶子节点的算法(数据结构)C语言版
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
/* HELLO.C -- Hello, world */
#include "stdio.h"
#include "conio.h"
#include "malloc.h"
/*=============二叉树的二叉链表存储表示===================*/ typedef struct BiTNode
{int data;
struct BiTNode *lchild,*rchild;/*左右孩子指针*/
};
typedef struct BiTNode chenchen;
/*=============构建二叉树======================*/
chenchen *create()
{int x;
static int z=0;
chenchen *p;
z=z+1;
printf("%3d: ",z);
scanf("%3d",&x);
if(x!=0)
{p=(chenchen*)malloc(sizeof(chenchen));
p->data=x;
p->lchild=create();
p->rchild=create();}
else p=0;
return p;
}
/*=====构建函数计算叶子节点的个数======*/
int count(chenchen *t){
static int y=0;
if(t)
{count(t->lchild);
count(t->rchild);
if(t->lchild==0&&t->rchild==0)
{y++;}}
return y;}
/*============主函数===============*/
main()
{ chenchen *T ;int c;
printf("Input the data:\n");
T=create();
if(T){c=count(T);printf("\nNumber=%d",c);}
else{printf("Empty");}printf("\n");
getch();
}