資料結構實驗之查詢二 平衡二叉樹

2021-07-24 18:25:59 字數 951 閱讀 1431

time limit: 400ms

memory limit: 65536kb

submit

statistic

problem description

根據給定的輸入序列建立一棵平衡二叉樹,求出建立的平衡二叉樹的樹根。

input

輸入一組測試資料。資料的第1行給出乙個正整數n(n <= 20),n表示輸入序列的元素個數;第2行給出n個正整數,按資料給定順序建立平衡二叉樹。

output

輸出平衡二叉樹的樹根。

example input

5

88 70 61 96 120

example output

70

**多打幾次就熟了。

#include #include #include using namespace std;

struct node

;struct node*creat()

;int deep(struct node*p)

struct node*l(struct node *root)

;struct node*r(struct node *root)

;struct node *lr(struct node*root)

;struct node *rl(struct node *root)

;struct node*build(struct node *root,int x)

else

if(xdata)

}else

if(x>root->data)

}root->d=max(deep(root->left),deep(root->right))+1;

return root;

};int main()

平衡二叉樹 資料結構實驗之查詢二 平衡二叉樹

剛開始接觸平衡二叉樹,沒有什麼太多要分析的。部落格裡有很多大佬們都寫的很好。平衡二叉樹就是每個節點的子樹的高度差不超過1的二叉樹。可以快速搜尋數值的一種演算法,最糟的情況就是一直找到底,但也是log n 的。還是快很多。include include include define max a b a...

資料結構實驗之查詢二 平衡二叉樹

建立平衡二叉樹,我們採用依次插入節點的方式進行。而平衡二叉樹上插入節點採用遞迴的方式進行。遞迴演算法如下 1 若該樹為一空樹,那麼插入乙個資料元素為e的新節點作為平衡二叉樹的根節點,樹的高度增加1。2 若待插入的資料元素e和平衡二叉樹 bbst 的根節點的關鍵字相等,那麼就不需要進行插入操作。3 若...

資料結構實驗之查詢二 平衡二叉樹

time limit 400ms memory limit 65536k 根據給定的輸入序列建立一棵平衡二叉樹,求出建立的平衡二叉樹的樹根。輸入一組測試資料。資料的第1行給出乙個正整數n n 20 n表示輸入序列的元素個數 第2行給出n個正整數,按資料給定順序建立平衡二叉樹。輸出平衡二叉樹的樹根。5...