二叉搜尋樹的基本操作

2021-09-24 16:44:09 字數 1206 閱讀 9647

bst ——binary search tree

為什麼叫二叉排序樹?

因為bst的中序序列是乙個有序序列,所以對於乙個任意的關鍵字序列構造一顆二叉排序樹,實質就是對其進行排序,使其變為有序序列

特點:

typedef int keytype;

typedef struct nodebstnode;

bool insertbst(bstnode *&bt, keytype k)

if(bt->key == k) return false;

if(k < bt->key) return insertbst(bt->lc, k);

else return insertbst(bt->rc, k);

}bstnode *createbst(int a, int n)

void dispbst(bstnode *bt) }}

bstnode *searchbst(bstnode *bt, keytype k)

bstnode *searchbst_withparentnode(bstnode *bt, keytype k, bstnode *f1, bstnode *&f)

else if(k == bt->key)

else if(k < bt->key) return searchbst_withparentnode(bt->lc, k, bt, f);

else return searchbst_withparentnode(bt->rc, k, bt, f);

}int main() ;

int n = 10;

cout << "1. create a binary search tree..." << endl;

bt = createbst(a, n);

cout << "2. display bst: ";

dispbst(bt);

cout << endl;

bstnode *f;

cout << "3. search a key term... ";

//cout << searchbst(bt, 5) -> key << endl;

cout << searchbst_withparentnode(bt, 6, null, f) -> key;//lack of robustness

return 0;

}

二叉搜尋樹的基本操作

建立乙個非負二叉搜尋樹 1表空結點 編寫查詢函式,層序遍歷函式,插入函式,刪除函式,查詢最大值最小值函式 輸入該樹和要查詢的值 輸出 如果找到,列印出 x is found 沒找到列印出 not found 列印出層序遍歷序列 刪除最大值和最小值 刪除成功輸出 x is delete 最後再進行一層...

二叉搜尋樹的基本操作

二叉搜尋樹 binary search tree 它或者是一棵空樹,或者是具有下列性質的二叉樹 若它的左子樹不空,則左子樹上所有結點的值均小於它的根結點的值 若它的右子樹不空,則右子樹上所有結點的值均大於它的根結點的值 它的左 右子樹也分別為二叉搜尋樹樹。節點設定 typedef int datat...

二叉搜尋樹的基本操作

pragma once typedef int datatype typedef struct bstreenode bstnode include include include bstnode buybstreenode datatype data pnewnode data data pnew...