#include#include#includetypedef int elemtype;
typedef struct bitnode /* 樹結點結構 */
bitnode,*bstree;
/* 函式原形宣告 */
bstree create_bt();
void inorder(bitnode *p);
bitnode *search(bitnode *root,elemtype e);
void searchx(bitnode *p,elemtype e);//查詢e,如有返回yes否則返回no
/* 主函式 */
void main()
/* main */
bstree create_bt()
printf("\n key=?");
scanf("%d",&k);
} return(t);
}/* create_bt */
/* 查詢演算法,返回的是待找結點(e)的父結點指標,為插入提供條件 */
bitnode *search(bitnode *root,elemtype e)
return p;
/* 返回值是待找結點(e)的父結點指標 */
}/* search */
/* 僅查詢資料e是否存在 */
void searchx(bitnode *root,int e)
if(tag==1)
printf("\n yes!");
else
printf("\n no!");
}/* searchx */
/* 中根遍歷二叉排序樹,結果應該是有序的,為了驗證二叉排序樹的正確性 */
void inorder(bitnode *t)
} /* display */
二叉排序樹
在複習資料結構,把這個東西總結一下。這種結構是動態查詢表,這種動態是相對靜態查詢 順序查詢,折半查詢,分塊查詢等 來說的。對於各種靜態鍊錶,要達到查詢複雜度為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 ...