二叉排序樹的刪除

2021-10-10 01:56:39 字數 1591 閱讀 6941

遇到真題裡有這個問題,寫了一段**進行實現

#include

#include

typedef

struct bitnodebitnode,

*bitree;

//二叉排序樹節點的插入

void

insert

(bitree &t,

int key)

else

if(keydata)

return

insert

(t->lchild,key)

;else

if(key>t->data)

return

insert

(t->rchild,key);}

//根據所給序列建立二叉排序樹

bitree creat

(int s,

int n)

return t;

}//前序遞迴遍歷

void

qianxu

(bitree t)

}//中序遞迴遍歷

void

zhongxu

(bitree t)

}//根據給定key找到在樹中的位置

bitnode*

search

(bitree t,

int key)

}bitnode*

father

(bitree t,bitnode* p)

}bitnode*

lmax

(bitree t,bitnode* p)

void

del(bitree &t,bitnode* p)

else

}else

else

if(front->rchild==p)

}else

if(p->rchild!=

null)}

}int

main()

; bitree t=

creat

(s,9);

printf

("初始二叉樹序列:\n");

printf

("前序序列為:");

qianxu

(t);

printf

("\n");

printf

("中序序列為:");

zhongxu

(t);

printf

("\n請輸入想要刪除的元素:");

scanf

("%d"

,&a)

; p=

search

(t,a)

;del

(t,p)

;printf

("刪除後的二叉樹序列為:\n");

printf

("前序序列為:");

qianxu

(t);

printf

("\n");

printf

("中序序列為:");

zhongxu

(t);

return0;

}

二叉排序樹刪除

二叉排序樹的刪除情況比較複雜,有以下三種情況需要考慮 第一種情況 刪除葉子節點 思路 第二種情況 刪除只有一棵子樹的節點,比如1 思路 如果targetnode有右子節點 第三種情況 刪除有兩棵子樹的節點 比如 7,3,10 思路 public class binarysorttreedemo bi...

構造二叉排序樹(BST) 二叉排序樹的刪除

主要是刪除操作 include include using namespace std typedef int elementtype typedef struct treenode threadtree void visit treenode node void inorder threadtre...

二叉排序樹的刪除

對於一般的二叉樹來說,刪去樹中的乙個結點是沒有意義的,因為它將使以被刪除的結點為根的子樹變成森林,破壞了整棵樹的結構 但是,對於二叉排序樹,刪去樹上的乙個結點相當於刪去有序序列中的乙個記錄,只要在刪除某個結點後不改變二叉排序樹的特性即可。在二叉排序樹上刪除乙個結點的演算法如下 btree delet...