遍历二叉树——统计结点个数

本文介绍了一种通过输入构建二叉树的方法,并实现了多种遍历方式来统计树的节点数、叶子节点数和度为2的节点数。此外,还提供了前序遍历输出所有叶子节点的功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#include<stdio.h>
#include<stdlib.h>
typedef  struct NODE
{
char data;
struct NODE *Lchild;
struct NODE *Rchild;
}BiTree;
int hight=0;
int count=0;
BiTree *ChangeTree(BiTree *root)
{
char ch;
ch=getchar();
if(ch=='#')
root=NULL;
else
{
root=(BiTree *)malloc(sizeof(BiTree));
root->data=ch;
root->Lchild=ChangeTree(root->Lchild);
root->Rchild=ChangeTree(root->Rchild);
}
return root;
}


int PreOder(BiTree *root)
{
if(root)
{
printf("%c",root->data);
PreOder(root->Lchild);
PreOder(root->Rchild);
}
return 0;
}
int PreOder2(BiTree *root)
{
if(root==NULL)
return 0;
if(root->Lchild==NULL&&root->Rchild==NULL)
printf("%c",root->data);
PreOder2(root->Lchild);
PreOder2(root->Rchild);
}
 int Bianli(BiTree *root)
{


if(root)
{
count++;
Bianli(root->Lchild);
Bianli(root->Rchild);
}
return count;
}
 int Dutwo(BiTree *root)
 {
int n1,n2;
if(root==NULL)
return 0;
if(root->Lchild!=NULL&&root->Rchild!=NULL)
return 1;
n1=Dutwo(root->Lchild);
n2=Dutwo(root->Rchild);
return (n1+n2+1);
 }
int leaf(BiTree *root)
{
int n1,n2;
if(root==NULL)
return 0;
if(root->Lchild==NULL&&root->Rchild==NULL)
return 1;
n1=leaf(root->Lchild);
n2=leaf(root->Rchild);
return (n1+n2);
}
int main()
 {
int n,n1,n2,n3;
BiTree *root;
root=ChangeTree(&root);
n=Bianli(root);
n1=leaf(root); 
n2=Dutwo(root);
n3=n-n1-n2;
printf("%d %d %d\n",n1,n3,n2);
PreOder2(root);
printf("\n");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值