数据结构第5天作业

二叉树代码

//头文件
#ifndef __TEST_H__
#define __TEST_H__

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>

typedef int Datatype;

typedef struct tree
{
    Datatype data;
    struct tree *left;
    struct tree *right;
}Tree, *pTree;


pTree creat();

void xshow(pTree head);
void zshow(pTree head);
void hshow(pTree head);
#endif
//主函数
#include "test.h"

int main(int argc, char const *argv[])
{
    pTree head = creat();

    xshow(head);
    printf("\n");

    zshow(head);
    printf("\n");

    hshow(head);
    printf("\n");

    return 0;
}
//功能函数
#include "test.h"


//创建先序二叉树
pTree creat()
{
    int vaile = 0;
    scanf("%d", &vaile);
    if(-1 == vaile)
        return NULL;
    
    pTree head = (pTree)malloc(sizeof(Tree));
    if(NULL == head)
    {
        printf("创建失败。\n");
        return NULL;
    }
    head->data = vaile;

    head->left = creat();
    head->right = creat();
    return head;
}


//


//先序遍历
void xshow(pTree head)
{
    if(head != NULL)
    {
        printf("%d ", head->data);
        xshow(head->left);
        xshow(head->right);
    }
    return;
}


//中序遍历
void zshow(pTree head)
{
    if(head != NULL)
    {
        zshow(head->left);
        printf("%d ", head->data);
        zshow(head->right);
    }
    return;
}


//先序遍历
void hshow(pTree head)
{
    if(head != NULL)
    {
        hshow(head->left);
        hshow(head->right);
        printf("%d ", head->data);
    }
    return;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值