二叉樹排序樹的建立,遍歷和刪除
ZHUO_SIR發表於2018-06-13
- #include<stdio.h>
- #include<stdlib.h>
-
- typedef struct bst{
- int data;
- struct bst *left;
- struct bst *right;
- }BSTree;
-
- void Insert(BSTree *t,int key){
- BSTree *p;
- if(!p=((BSTree *)malloc(sizeof(BSTree))))
- printf("申請記憶體失敗\n");
- p->data=key;
- p->left=p->right=NULL;
- head=t;
- while(head){
- parent=head;
- if(key<head->data)
- head=head->left;
- else
- head=head->right;
- }
- if(key<parent->data)
- parent->left=head;
- else
- parent->right=head;
- }
-
- //中序遍歷
- void LDR(BSTree *t){
- if(bt){
- LDR(t->left);
- printf("%d",t->data);
- LDR(t->right);
- }
- return;
- }
-
- void construct(BSTree *t,int data,int n){
- t->data=data[0];
- t->left=t->right=NULL;
- for(i=1;i<n;i++){
- Insert(t,data[i]);
- }
- }
-
- BSTree *Search(BSTree *t,int key){
- if(!t || t->data==key) return t;
- else if(key<t->data) return (Search(t->left,key));
- else return (Search(t->right,key));
- }
-
- /****************************************************
- * 刪除操作首先需要找到關鍵字
- * 然後根據關鍵字所在的位置更改二叉樹的結構
- *
- * 1. 如果關鍵字所在位置沒有左右子節點,也就是說是葉子節點
- * 那麼就直接刪除。在刪除的時候需要判斷這個節點是其父節點的左子樹(parent->left=NULL)還是右子樹(parent->right=NULL)
- * 2. 如果關鍵字所在位置只有右子樹,沒有左子樹,這個也很容易,就直接把其右子樹提上來就可以了
- * 在這之前需要判斷關鍵字所在位置是其父節點的左子樹還是右子樹
- * 3. 關鍵字所在位置只有左子樹,沒有右子樹
- * 同上面
- * 4. 關鍵字所在位置左右子樹都有
- * 這種情況的重點就是將關鍵字所在的位置替換為關鍵字的右子樹裡面的最小值
- * **************************************************/
- void Delet(BSTree *t,int key){
- BSTree *p,*parent;
- p=t;
- while(p){
- if(p->data==key){
- //沒有左右子節點
- if(!p->left && !p->right){
- if(p==t) free(p);
- else if(p=parent->left){
- parent->left=NULL;
- free(p);
- }else{
- parent->right=NULL;
- free(p);
- }
- }
- // 只有右子樹
- else if(!p->left){
- if(parent->left=p)
- parent->left=p->right;
- else
- parent->right=p->right;
- free(p);
- }
- //只有左子樹
- else if(!p->right){
- if(parent->left=p)
- parent->left=p->left;
- else
- parent->right=p->left;
- free(p);
- }
- //左右子樹都有
- else{
- BSTree *s,*sp;
- sp=p;
- s=p->right;
- while(s->left){
- sp=s;
- s=s->left;
- }
- p->data=s->data;
- sp->left=NULL;
- free(sp);
- }
-
- }else if(key<p->data){
- parent=p;
- p=p->left;
- }else{
- parent=p;
- p=p->right;
- }
- }
- }