二叉排序樹

2021-07-24 18:17:55 字數 842 閱讀 1999

在一棵空的二叉排序樹中依次插入關鍵字序列為12,7,17,11,16,2,13,9,21,4,試編寫程式建立這棵二叉排序樹

迴圈建立每乙個節點,並初始化左右孩子為空,利用遞迴如果下個元素小於當前元素就建立左孩子,否則就建立右孩子輸入關鍵字

結束後就成功建立了乙個二叉排序樹,左孩子《父《右孩子

#include

using namespace std;

#include "bstree.h"

int main()

#ifndef bstree_h_included

#define bstree_h_included

typedef struct elemtype;

typedef struct bstnodebstnode,*bstree;

void insertbst(bstree &t,elemtype e)

else if(e.keydata.key)

insertbst(t->lchild,e);

else if(e.key>t->data.key)

insertbst(t->rchild,e);

}void creatbst(bstree &t)

}void printbstree(bstree t)

}#endif // bstree_h_included

二叉排序樹

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