二叉排序樹

2021-09-12 13:25:23 字數 981 閱讀 2630

題目描述

輸入一系列整數,建立二叉排序樹,並進行前序,中序,後序遍歷。

輸入描述:

輸入第一行包括乙個整數n(1<=n<=100)。

接下來的一行包括n個整數。

輸出描述:

可能有多組測試資料,對於每組資料,將題目所給資料建立乙個二叉排序樹,並對二叉排序樹進行前序、中序和後序遍歷。

每種遍歷結果輸出一行。每行最後乙個資料之後有乙個空格。

輸入中可能有重複元素,但是輸出的二叉樹遍歷序列中重複元素不用輸出。

示例1輸入複製5

1 6 5 9 8

輸出複製

1 6 5 9 8

1 5 6 8 9

5 8 9 6 1

#include

#include

#include

using namespace std;

set ex;

typedef struct nodenode,*lnode;

lnode insert(lnode root,int x)

else if(root->d < x) root->rchild=insert(root->rchild,x);

else root->lchild = insert(root->lchild,x);

return root;
void preorder(lnode root)

void inorder(lnode root)

void postorder(lnode root)

int main()

preorder(root);

printf("\n");

inorder(root);

printf("\n");

postorder(root);

printf("\n");

}

return 0;

二叉排序樹

在複習資料結構,把這個東西總結一下。這種結構是動態查詢表,這種動態是相對靜態查詢 順序查詢,折半查詢,分塊查詢等 來說的。對於各種靜態鍊錶,要達到查詢複雜度為o logn 必須要求有序 而要使插入刪除複雜度為o 1 必須是鍊錶儲存。動態查詢表就可以同時滿足這兩者。動態查詢表的特點是表結構本身在查詢過...

二叉排序樹

name 二叉排序樹相關操作 author unimen date 2011 10 8 13 14 21 刪除結點比較麻煩,總結如下 4大種情況 1 結點p無右孩子 將該點的左孩子變為其在雙親中的同位孩子 1 p為其雙親的左孩子時將其的左孩子變為雙親的左孩子 2 p為其雙親的右孩子時將其的左孩子變為...

二叉排序樹

include include include include struct tree node void insert node struct tree node int void pre order struct tree node void in order struct tree node ...