6-8 求二叉樹高度 (20 point(s))
本題要求給定二叉樹的高度。
int getheight( bintree bt );
其中bintree
結構定義如下:
typedef struct tnode *position;
typedef position bintree;
struct tnode;
要求函式返回給定二叉樹bt的高度值。
#include #include typedef char elementtype;
typedef struct tnode *position;
typedef position bintree;
struct tnode;
bintree creatbintree(); /* 實現細節忽略 */
int getheight( bintree bt );
int main()
/* 你的**將被嵌在這裡 */
4
如果樹為空,那麼高度為0
如果根節點沒有左右孩子,那麼樹的高度為1
否則,遞迴求左子數和右子數的高度,然後總高度等於1+max(depthr,depthl)
#include #include typedef char elementtype;
typedef struct tnode *position;
typedef position bintree;
struct tnode ;
bintree creatbintree(); /* 實現細節忽略 */
int getheight(bintree bt);
int main()
/* 你的**將被嵌在這裡 */
int getheight(bintree bt)
二叉樹的深度 二叉樹的深度
題目描述輸入一棵二叉樹,求該樹的深度。從根結點到葉結點依次經過的結點 含根 葉結點 形成樹的一條路徑,最長路徑的長度為樹的深度。及測試用例 單步除錯檢視過程 public class solution19 拿到左子樹的最大深度 int leftdep treedepth root.left 拿到右子...
二叉樹的深度 二叉樹的深度 二叉樹最大寬度
題目 輸入一棵二叉樹的根節點,求該樹的深度。從根節點到葉節點依次經過的節點 含根 葉節點 形成樹的一條路徑,最長路徑的長度為樹的深度。例如 給定二叉樹 3,9,20,null,null,15,7 返回它的最大深度 3 根節點加上左右子樹的最大深度就是樹的最大深度。如下 class solution ...
求二叉樹的深度(C語言)
int depth bitree t t是二叉樹樹根指標,函式depth返回二叉樹的深度,若樹為空,返回0。include include typedef char elemtype typedef struct bitnode bitnode,bitree bitree create 細節在此不表...