数据结构实验之二叉树三:统计叶子数
Time Limit: 1000MS Memory limit: 65536K
题目描述
已知二叉树的一个按先序遍历输入的字符序列,如abc,,de,g,,f,,, (其中,表示空结点)。请建立二叉树并求二叉树的叶子结点个数。
输入
连续输入多组数据,每组数据输入一个长度小于50个字符的字符串。
输出
输出二叉树的叶子结点个数。
示例输入
abc,,de,g,,f,,,
示例输出
3
#include<bits/stdc++.h>
using namespace std;
struct node
{
char data;
struct node *l;
struct node *r;
};
string s;
int i,c;
struct node *creat()
{
struct node *root;
if(s[i++]==',')
root=NULL;
else
{
root=new node;
root->data=s[i-1];
root->l=creat();
root->r=creat();
}
return root;
};
void middle(struct node *root)
{
if(root)
{
middle(root->l);
cout<<root->data;
middle(root->r);
}
}
void last(struct node *root)
{
if(root)
{
last(root->l);
last(root->r);
cout<<root->data;
}
}
int leaf(struct node *root)
{
if(root)
{
if(root->l==NULL&&root->r==NULL)
{
c++;
}
leaf(root->l);
leaf(root->r);
}
}
int main()
{
while(cin>>s)
{
i=0;
c=0;
struct node *root;
root=creat();
//middle(root);
//cout<<endl;
//last(root);
//cout<<endl;
leaf(root);
cout<<c<<endl;
}
return 0;
}
#include<bits/stdc++.h>
using namespace std;
struct node
{
char data;
struct node *l;
struct node *r;
};
string s;
int i,c;
struct node *creat()
{
struct node *root;
if(s[i++]==',')
root=NULL;
else
{
root=new node;
root->data=s[i-1];
root->l=creat();
root->r=creat();
}
return root;
};
void middle(struct node *root)
{
if(root)
{
middle(root->l);
cout<<root->data;
middle(root->r);
}
}
void last(struct node *root)
{
if(root)
{
last(root->l);
last(root->r);
cout<<root->data;
}
}
int leaf(struct node *root)
{
if(root)
{
if(root->l==NULL&&root->r==NULL)
{
c++;
}
leaf(root->l);
leaf(root->r);
}
}
int main()
{
while(cin>>s)
{
i=0;
c=0;
struct node *root;
root=creat();
//middle(root);
//cout<<endl;
//last(root);
//cout<<endl;
leaf(root);
cout<<c<<endl;
}
return 0;
}