/*二叉排序樹*/
#include
typedef int keytype;
typedef struct /*元素的定義*/
datatype;
typedef struct node /*二叉排序樹的型別定義*/
bitreenode,*bitree;
bitree bstsearch(bitree t,datatype x) /*二叉排序樹的查詢,如果找到元素x,則返回指向結點的指標,否則返回null*/
}return
null;
}int bstinsert(bitree *t,datatype x) /*二叉排序樹的插入操作,如果樹中不存在元素x,
則將x插入到正確的位置並返回1,否則返回0*/
p=(bitreenode *)malloc(sizeof(bitreenode)); /*生成結點*/
if(!p)
exit(-
1); p->
data
=x; p->lchild=
null;
p->rchild=
null;
if(!
parent) /*如果二叉樹為空,則第一結點成為根結點*/
*t=p;
else
if(x.key<
parent
->
data
.key)
parent
->lchild=p;
else
parent
->rchild=p;
return1;}
int bstdelete(bitree *t,datatype x) /*在二叉排序樹t中存在值為x的資料元素時,刪除該資料元素結點。*/
}void deletenode(bitree *s) /*從二叉排序樹中刪除結點s,並使該二叉排序樹性質不變*/
else
if(!(*s)->lchild) /*如果s的左子樹為空,則使s的右子樹成為被刪結點雙親結點的左子樹*/
else
/*如果s的左、右子樹都存在,則使s的直接前驅結點代替s,
並使其直接前驅結點的左子樹成為其雙親結點的右子樹結點。*/
(*s)->
data
=y->
data;/*結點s被y取代*/
if(x!=*s) /*如果結點s的左孩子結點不存在右子樹*/
x->rchild=y->lchild;/*使y的左子樹成為x的右子樹*/
else
/*如果結點s的左孩子結點存在右子樹*/
x->lchild=y->lchild;/*使y的左子樹成為x的左子樹*/
free(y);
}}void inoerder(bitree t)
}main()
; int n=sizeof(table)/sizeof(table[0
]);datatype x=,s=;
int i;
for(i=0;i[i]
); printf("中序遍歷二叉樹得到的序列為:\n");
inoerder(t);
p=bstsearch(t,x);
if(p!=null)
printf("\n二叉排序樹查詢,關鍵字%d存在\n",x.key);
else
printf("查詢失敗!\n");
bstdelete(&t,s);
printf("刪除元素%d後,中序遍歷二叉樹得到的序列為:\n",s.key);
inoerder(t);
printf("\n");
}
編譯效果
二叉排序樹
在複習資料結構,把這個東西總結一下。這種結構是動態查詢表,這種動態是相對靜態查詢 順序查詢,折半查詢,分塊查詢等 來說的。對於各種靜態鍊錶,要達到查詢複雜度為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 ...