#include#includetypedef int type;
typedef struct node
bsnode;
typedef bsnode *bstree;
//非遞迴查詢x的位置,通過二級指標返回其父親節點位置和其位置
void bssearch(bstree t,type x,bstree *f,bstree*p)
return ;
}//遞迴查詢x的位置
bstree bssearch(bstree t ,type x)
//樹中插入乙個值為x的節點
void insert(bstree *t,type x)
p=(bstree)malloc(sizeof(bsnode));
p->key=x;
p->lchild=p->rchild=null;
if(*t==null)//樹為空樹,新插入的節點為根節點
*t=p;
else//插入到父節點相應位置
}//建立一顆樹
bstree creatbstree()
bstree delbstree(bstree t,type x)
else t=null;//刪除的是根節點
free(q);
}else if(q->rchild==null)//只有左兒子樹
else t=q->lchild;//被刪除的是根節點
free(q);
}else if(q->lchild==null)//只有右兒子樹(類似)
else t=q->rchild;
free(q);
}else//既有左子樹,又有右子樹
else t=q->rchild;//刪除的是根節點
二叉排序樹
在複習資料結構,把這個東西總結一下。這種結構是動態查詢表,這種動態是相對靜態查詢 順序查詢,折半查詢,分塊查詢等 來說的。對於各種靜態鍊錶,要達到查詢複雜度為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 ...