特別的二叉排序樹

2021-07-23 04:09:23 字數 1234 閱讀 6506

有一棵特別的二叉排序樹,每個結點擁有乙個資料值,且各結點的資料值互不相同,每個結點擁有乙個權值,且各結點的權值也互不相同。每個結點的資料值均小於其左子結點的資料值,大於其右子結點的資料值。每個結點的權值均小於其子結點的權值。這種二叉排序樹,當結點的資料值和權值已知時,樹的形態將是唯一的,即相當於按權值順序依次將結點插入樹中所形成的二叉排序樹。 請編寫程式計算這棵樹的深度,約定只有根結點的樹的深度為1。

輸入的第一行為乙個整數m,為測試用例的個數,0<m≤100。 輸入的第二行開始為m個測試用例。 每個測試用例的第一行為乙個整數n,表示樹中結點的個數,0<n≤100。 測試用例的第二行為n個用空格隔開的整數,為結點上的資料值。 測試用例的第三行為n個用空格隔開的整數,為結點上的權值,結點順序與上一行一致。

對每個測試用例,輸出樹的深度,每個測試用例的輸出佔一行。

133 2 12 1 32

#include#include#include#include#includeusing namespace::std;

struct stus[105];

int m;

int n;

typedef struct binodebinode,*bitree;

void swap(int low,int high)

int partition(int low,int high)

swap(low,high);

while(lowdata)

else if(datadata)

return searchbt(t->rchild,data,t,p);

else

return searchbt(t->lchild,data,t,p);

}bool insertbt(bitree *t,int data,int val)

else

return false;

}int max(int a,int b)

int getdeepth(bitree *root)

void pre(bitree *root)

int main()

for(i=1;i<=n;i++)

quicksort();

bitree root;

root=null;

for(i=1;i<=n;i++)

//creatbt(&root);

//pre(&root);

int deep=getdeepth(&root);

cout<

二叉排序樹

在複習資料結構,把這個東西總結一下。這種結構是動態查詢表,這種動態是相對靜態查詢 順序查詢,折半查詢,分塊查詢等 來說的。對於各種靜態鍊錶,要達到查詢複雜度為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 ...