题解 | #二叉排序树#

二叉排序树

https://www.nowcoder.com/practice/b42cfd38923c4b72bde19b795e78bcb3

#include<iostream>
#include<cstring>
using namespace std;
int arr[101];
typedef struct BiTNode {
    int data;
    struct BiTNode* L, * R;
}BiTNode, * BiTree;
void Insert_Bitree(BiTree & root, int k) {
    if (root == NULL) {
        root = (BiTNode*)malloc(sizeof(BiTNode));
        root->data = k;
        root->L = NULL;
        root->R = NULL;

    }
    else if (root->data == k) {
        return;

    }
    else if (root->data > k) {
        Insert_Bitree(root->L, k);
    }
    else {
        Insert_Bitree(root->R, k);
    }

}
void Pre_Order(BiTree& T) {
    if (T != NULL) {
        cout << T->data << " ";
        Pre_Order(T->L);
        Pre_Order(T->R);

    }
    return;

}
void In_Order(BiTree& T) {
    if (T != NULL) {  
        In_Order(T->L);
        cout << T->data << " ";
        In_Order(T->R);

    }
    return;

}
void Post_Order(BiTree& T) {
    if (T != NULL) {     
        Post_Order(T->L);
        Post_Order(T->R);
        cout << T->data << " ";

    }
    return;
}

int main() {
    int n;
    while (cin >> n && n) {
        memset(arr, 0, 101);
        for (int i = 0; i < n; i++) {
            cin >> arr[i];
        }
        BiTree T=NULL;

        for (int i = 0; i < n; i++) {
            Insert_Bitree(T, arr[i]);
        }
        Pre_Order(T);
        cout << endl;
        In_Order(T);
        cout<<endl;
        Post_Order(T);
        cout<<endl;



    }



}

全部评论

相关推荐

神哥不得了:神哥来啦~自我评价和校园经历的话可以直接删了,从大厂暑期的话应该没有什么太多问题,应该是能拿到很多大厂面试机会的,就是在面试的时候表示的好一点就行,可以在面试前先把高频top 50的八股多巩固几遍,千万不要看那些假高频八股,这两个项目的话问题不是很大,应该能够帮你找到大厂实习的,算法的话一定要刷起来,因为大厂有些还是比较看重算法的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务