一、 實驗目的
1. 掌握二叉樹邏輯結構;
2. 掌握利用c/c++程式語言實現資料結構的程式設計方法;
3. 通過上機時間加強利用資料結構解決實際應用問題的能力;
二、 實驗相關知識
1. 二叉樹的二叉鍊錶儲存結構的實現;
2. 二叉樹排序樹的定義;
3. 二叉排序樹的插入、構建、刪除;
4. 二叉排序樹的中序遍歷。
三、 實驗內容與要求
實現二叉排序樹的結點插入、構建、遍歷和元素刪除( 已經提供結點刪除函式實現)
四、 實現過程與結構
#include #include#include
typedef
char elemtype; //
二叉鍊錶中結點元素型別
typedef struct
bitnode
bitnode, *bitree; //
二叉鍊錶的型別定義
bitree createbitree();//
利用先序遍歷建立二叉樹,返回根指標。
void inorder(bitree t);//
二叉樹的中序遍歷,引數:二叉樹根指標t,輸出:中間沒有空格,末尾不換行。
int insertnode(bitree& t, elemtype x);//
二叉排序樹的插入
bitree createbitree()//
利用先序遍歷建立二叉樹,返回根指標。
returnt;}
int insertnode(bitree &t, elemtype x)//
二叉排序樹的插入
else
return1;
}void inorder(bitree t) //
中序遍歷
}bitnode* find(bitree&t, elemtype x)
}int delete(bitree &p)
if (p->lchild == null)
else
if (p->rchild == null)
else
//直接改變結點 p 的值
p->data = s->data;
//判斷結點 p 的左子樹 s 是否有右子樹,分為兩種情況討論
二叉排序樹
在複習資料結構,把這個東西總結一下。這種結構是動態查詢表,這種動態是相對靜態查詢 順序查詢,折半查詢,分塊查詢等 來說的。對於各種靜態鍊錶,要達到查詢複雜度為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 ...