問題:定義二叉樹的鏈式儲存結構,實現其基本運算, 並完成測試。
要求:1、標頭檔案btree.h中定義資料結構並宣告用於完成基本運算的。對應基本運算的函式包括:
void createbtnode(btnode *&b,char *str); //由str串建立二叉鏈
btnode *findnode(btnode *b,elemtype x); //返回data域為x的節點指標
btnode *lchildnode(btnode *p); //返回*p節點的左孩子節點指標
btnode *rchildnode(btnode *p); //返回*p節點的右孩子節點指標
int btnodedepth(btnode *b); //求二叉樹b的深度
void dispbtnode(btnode *b); //以括號表示法輸出二叉樹
void destroybtnode(btnode *&b); //銷毀二叉樹
2、在btree.cpp中實現這些函式
3、在main函式中完成測試,包括如下內容:
(1)用」a(b(d,e(h(j,k(l,m(,n))))),c(f,g(,i)))」建立如圖的二叉樹用於測試。
(2)輸出二叉樹
(3)查詢值為』h』的節點,若找到,輸出值為』h』的節點的左、右孩子的值
(4)求高度二叉樹高度
(5)銷毀二叉樹
#include #include "btree.h"
int main()
else
printf(" 未找到!");
printf("\n");
printf(" (4)二叉樹b的深度:%d\n",btnodedepth(b));
printf(" (5)釋放二叉樹b\n");
destroybtnode(b);
return 0;
}
#ifndef btree_h_included
#define btree_h_included
#define maxsize 100
typedef char elemtype;
typedef struct node
btnode;
void createbtnode(btnode *&b,char *str); //由str串建立二叉鏈
btnode *findnode(btnode *b,elemtype x); //返回data域為x的節點指標
btnode *lchildnode(btnode *p); //返回*p節點的左孩子節點指標
btnode *rchildnode(btnode *p); //返回*p節點的右孩子節點指標
int btnodedepth(btnode *b); //求二叉樹b的深度
void dispbtnode(btnode *b); //以括號表示法輸出二叉樹
void destroybtnode(btnode *&b); //銷毀二叉樹
#endif // btree_h_included
#include #include "btree.h"
#include void createbtnode(btnode *&b,char *str) //由str串建立二叉鏈}}
j++;
ch=str[j];
}}btnode *findnode(btnode *b,elemtype x) //返回data域為x的節點指標
}btnode *lchildnode(btnode *p) //返回*p節點的左孩子節點指標
btnode *rchildnode(btnode *p) //返回*p節點的右孩子節點指標
int btnodedepth(btnode *b) //求二叉樹b的深度
}void dispbtnode(btnode *b) //以括號表示法輸出二叉樹
}}void destroybtnode(btnode *&b) //銷毀二叉樹
}
執行結果:
專案1 二叉樹演算法庫
檔名稱 xm1.cbp 作 者 隋溢凡 完成日期 2016年11月4日 版 本 號 v1.0 問題描述 定義二叉樹的鏈式儲存結構,實現其基本運算,並完成測試。輸入描述 無 程式輸出 測試資料 ifndef btree h included define btree h included define...
二叉樹演算法庫
標頭檔案 define maxsize 100 typedef char elemtype typedef struct node btnode void createbtnode btnode b,char str 由str串建立二叉鏈 btnode findnode btnode b,elemt...
二叉樹演算法庫
ifndef btree h included define btree h included include include define maxsize 100 typedef char elemtype typedef struct node btnode void createbtnode ...