数据结构day5

二叉树链表的创建,以及先序中序后序遍历

功能函数

#include <stdio.h>                        
#include <string.h>                       
#include <stdlib.h>                       
#include "./func.h"                       
                                          
                                          
head* create_tree()                       
{                                         
    int data=0;                           
    scanf("%d",&data);                    
    if(-1==data)                          
    {                                     
        return NULL;                      
    }                                     
                                          
    head* roots=(head*)malloc(sizeof(head)
    if(NULL==roots)                       
    {                                     
        printf("创建根失败");             
        return NULL;                      
    }                                     
                                          
    roots->data=data;                     
    roots->Ltree=create_tree();           
    roots->Rtree=create_tree();           
                                          
    return roots;                         
                                          
}                                         
//先序遍历                                
void pre_order(head* roots)               
{                                         
    if(NULL==roots)                       
    {                                     
        return;                           
    }                                     
    printf("%d\t",roots->data);           
                                          
    pre_order(roots->Ltree);              
    pre_order(roots->Rtree);              
                                          
}                                         
//中序遍历                                
void mid_order(head* roots)               
{                                         
    if(NULL==roots)                       
    {                                     
        return;                           
    }                                     
    mid_order(roots->Ltree);              
    printf("%d\t",roots->data);           
    mid_order(roots->Rtree);              
}                                         
//后序遍历                                
void after_order(head* roots)             
{                                         
    if(NULL==roots)                       
    {                                     
        return;                           
    }                                     
    //左右根                              
    after_order(roots->Ltree);            
    after_order(roots->Rtree);            
    printf("%d\t",roots->data);           
                                          
}                                         
                                          
                                          
#ifndef __FUNC_H
#define __FUNC_H
typedef int typedata;
typedef struct tree
{
    typedata data;
    struct tree* Ltree;
    struct tree* Rtree;
}head;

head* create_tree();
void pre_order(head* roots);
void mid_order(head* roots);
void after_order(head* roots);              
#endif

 结果

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值