二叉搜索树的建立

在这里插入图片描述
前序遍历:根左右:6321587
中序遍历:左根右:1235678
后序遍历:左右根:1253786

一棵二叉搜索树的左边全是比它本身小的,它的右边全都比它大

#include<bits/stdc++.h>
using namespace std;
struct node
{
    int data;
    node *lchild,*rchild;
};

void insertt(node*&tree,int value)//要取tree的地址,不然传不到函数外面
{
    node *t=new node();
    t->data=value;//把value打包成一个结构体
    t->lchild=NULL;
    t->rchild=NULL;
    if(tree==NULL)
    {
       tree=t;
    }
    else
    {
        node *temp=new node();
        temp = tree;
        while(temp!=NULL)
        {
            if(value<temp->data)
            {
                if(temp->lchild==NULL)
                {
                    temp->lchild=t;
                    return;
                }
                else
                    temp=temp->lchild;
            }
            else
            {
                if(temp->rchild==NULL)
                {
                    temp->rchild=t;
                    return;
                }
                else
                    temp=temp->rchild;
            }
        }
    }
}

void preorder(node *t)
{
    if(t)
    {
        cout<<t->data<<endl;
        preorder(t->lchild);
        preorder(t->rchild);
    }
}

void inorder(node*t)
{
    if(t)
    {
        inorder(t->lchild);
        cout<<t->data<<endl;
        inorder(t->rchild);
    }
}

void postorder(node*t)
{
    if(t)
    {
        postorder(t->lchild);
        postorder(t->rchild);
        cout<<t->data<<endl;
    }
}

int main()
{
    int arr[7]= {6,3,8,2,5,1,7};
    node *tree;
    tree=NULL;
    for(int i=0; i<7; i++)
        insertt(tree,arr[i]);
    preorder(tree);
    cout<<endl;
    inorder(tree);
    cout<<endl;
    postorder(tree);
    cout<<endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值