List Leaves

03-树2 List Leaves

#include<cstdio>
#include<iostream>
#include<stack>
#include<queue>
using namespace std;
#define N 20
#define Null -1
queue<int> q;
struct TreeNode
{
    int Left,Right;
}Tree[N];
int BuildTree(struct TreeNode T[]);
void Printf(int F);
int main()
{

    int F;
    F=BuildTree(Tree);
    Printf(F);

    return 0;

}
int BuildTree(struct TreeNode T[])
{
    int n;
    int check[N]={0};
    int Root=Null;

    scanf("%d",&n);

    for(int i=0;i<n;i++)
    {
        getchar();
        char cl,cr;
        scanf("%c %c",&cl,&cr);
        if(cl!='-')
        {
            T[i].Left=cl-'0';
            check[T[i].Left]=1;

        }
        else
            T[i].Left=Null;
        if(cr!='-')
        {
            T[i].Right=cr-'0';
            check[T[i].Right]=1;
        }
        else
            T[i].Right=Null;
    }
    if(n)
    {
        for(int i=0;i<n;i++)
        {
            if(check[i]==0)
            {
                Root=i;
                break;
            }
        }
    }
    return Root;
}
void Printf(int F)
{
    int flag=0;
    int First;

    q.push(F);
    while(!q.empty())
    {

        First=q.front();
        if(Tree[First].Left==Null&&Tree[First].Right==Null)
        {
            if(flag==0)
            {
                printf("%d",First);
                flag=1;
            }
            else
                printf(" %d",First);

        }
        if(Tree[First].Left!=Null)
        {
            q.push(Tree[First].Left);
        }
        if(Tree[First].Right!=Null)
        {
            q.push(Tree[First].Right);
        }
        q.pop();
    }


}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值
>