資料結構 基於二叉鍊錶的二叉樹高度的計算

2021-09-02 02:37:39 字數 579 閱讀 5646

描述

設二叉樹中每個結點的元素均為乙個字元,按先序遍歷的順序建立二叉鍊錶,編寫遞迴演算法計算二叉樹的高度。

輸入

多組資料。每組資料一行,為二叉樹的前序序列(序列中元素為『0』時,表示該結點為空)。當輸入只有乙個「0」時,輸入結束。

輸出

每組資料分別輸出一行,為二叉樹的高度。

樣例輸入1 複製

abcd00e00f00ig00h00

abd00e00cf00g00

0樣例輸出143

#includeusing namespace std;

#define max 500

typedef struct binode

*bitree;

void create(bitree &t)

}int len(bitree &t) }

int main()

return 0;

}

二叉樹 二叉鍊錶

include using namespace std typedef char elemtype int n 0 typedef struct binode binode class bitree bitree binode getroot void preorder binode root 前序...

資料結構 二叉樹 反轉二叉樹

include using namespace std define maxsize 1000 struct binary tree node class queue queue queue void queue push binary tree node btn binary tree node ...

資料結構 樹結構 二叉樹 完全二叉樹 滿二叉樹

樹結構是一種描述非線性層次關係的資料結構。除根結點外,其餘每個結點有且僅有乙個直接前驅。每個結點可以有任意多個直接後繼。英文名詞表示 tree,root,node,leaf,edge,child,subtree 要麼二叉樹沒有根結點,是一棵空樹。要麼二叉樹由根結點,左子樹,右子樹組成,且左子樹和右子...