二叉排序树(王道)

 

#include <iostream>
#include<cstdio>
using namespace std;

struct Nod
e{
    Node* lchild;
    Node* rchild;
    int num;
};

struct Node Tree[50];
int loc;
Node *create(){//创建
    Tree[loc].lchild = Tree[loc].rchild = NULL;
    return &Tree[loc++];
}

void preOrder(Node* T){//前序遍历
    printf("%d",T->num);
    if(T->lchild != NULL)
        preOrder(T->lchild);
    if(T->rchild != NULL)
        preOrder(T->rchild);
}

void inOrder(Node* T){//中序遍历
    if(T->lchild != NULL)
        inOrder(T->lchild);
    printf("%d",T->num);
    if(T->rchild != NULL)
        inOrder(T->rchild);
}

void postOrder(Node* T){//后序遍历
    if(T->lchild != NULL)
        postOrder(T->lchild);
    if(T->rchild != NULL)
        postOrder(T->rchild);
    printf("%d",T->num);
}

Node *insertNode(Node *T,int x){//插入数字
    if(T == NULL){
        T = create();
        T->num = x;
    }
    else if(x < T->num)
        T->lchild = insertNode(T->lchild,x);
    else if(x > T->num)
        T->rchild = insertNode(T->rchild,x);
    return T;
}

int main()
{
    int n;
    cin >> n;
    while(n--){
        int n2;
        cin >> n2;
        Node *T = NULL;
        loc = 0;
        for(int i=0;i<n2;i++){
            int x = 0;
            cin >> x;
            T = insertNode(T,x);
        }
        preOrder(T);
        cout << endl;
        inOrder(T);
        cout << endl;
        postOrder(T);
        cout << endl;
    }
    return 0;
}

 

转载于:https://www.cnblogs.com/xym4869/p/8548567.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值