华中科技大学机试 二叉排序树 Easy *二叉树的构建方式

Posted songlinxuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了华中科技大学机试 二叉排序树 Easy *二叉树的构建方式相关的知识,希望对你有一定的参考价值。

基本思想:

注意建树的引用问题;

要么return node*

要么node* &root

 

关键点:

无;

 

#include<stdio.h>
#include<stdlib.h>
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<map>
#include<set>
using namespace std;

int n;

struct node {
    int data;
    node* left = NULL;
    node* right = NULL;
};

void insert(node* &root, int x,int& pre) {
    if (root == NULL) {
        root = new node;
        root->data = x;
        return;
    }
    pre = root->data;
    if (x > root->data) {
        insert(root->right, x, pre);
    }
    else {
        insert(root->left, x, pre);
    }
}

int main() {
    while (cin >>n) {
        int a;
        node* root = NULL;
        for (int i = 0; i < n; i++) {
            cin >> a;
            int pre = -1;
            insert(root, a, pre);
            cout << pre << endl;
        }
        //cout << 11 << endl;
    }
    return 0;
}

 

以上是关于华中科技大学机试 二叉排序树 Easy *二叉树的构建方式的主要内容,如果未能解决你的问题,请参考以下文章

华中科技大学机试 二叉排序树 Easy

二叉排序树的最大高度是多少

浙江大学机试 二叉搜索树 Easy *考点:两个遍历序列确定一棵子树

leetcode617 合并二叉树(Easy)

二叉树为二叉排序树的充分必要条件是啥

什么是《平衡二叉树》