資料結構實驗之二叉樹八 (中序後序)求二叉樹的深度

2021-08-10 10:19:54 字數 988 閱讀 8073

time limit: 1000ms

memory limit: 65536kb

submit

statistic

problem description

已知一顆二叉樹的中序遍歷序列和後序遍歷序列,求二叉樹的深度。

input

輸入資料有多組,輸入t,代表有t組資料。每組資料報括兩個長度小於50的字串,第乙個字串表示二叉樹的中序遍歷,第二個表示二叉樹的後序遍歷。

output

輸出二叉樹的深度。

example input

2

dbgeafc

dgebfca

lnixu

linux

example output

4

3

#include #include #include struct node

;struct node *creat(char a, char b, int i, int j, int s, int t)//用中序後序建立二叉樹,ij表示後序的座標,st表示中序;

root = (struct node *)malloc(sizeof(struct node));

root -> data = a[j];

k = s;

while((k <= t) && b[k] != a[j])

if(k > t)

root -> lchild = creat(a, b, i, i+k-s-1, s, k-1);

root -> rchild = creat(a, b, i+k-s, j-1, k+1, t);

return root;

};

int deep(struct node *root)

else

else

}}int main()

return 0;

}



資料結構實驗之二叉樹八 (中序後序)求二叉樹的深度

problem description 已知一顆二叉樹的中序遍歷序列和後序遍歷序列,求二叉樹的深度。input 輸入資料有多組,輸入t,代表有t組資料。每組資料報括兩個長度小於50的字串,第乙個字串表示二叉樹的中序遍歷,第二個表示二叉樹的後序遍歷。output 輸出二叉樹的深度。example in...

資料結構實驗之二叉樹八 (中序後序)求二叉樹的深度

time limit 1000ms memory limit 65536kb submit statistic problem description 已知一顆二叉樹的中序遍歷序列和後序遍歷序列,求二叉樹的深度。input 輸入資料有多組,輸入t,代表有t組資料。每組資料報括兩個長度小於50的字串,...

資料結構實驗之二叉樹八 (中序後序)求二叉樹的深度

time limit 1000ms memory limit 65536kb submit statistic problem description 已知一顆二叉樹的中序遍歷序列和後序遍歷序列,求二叉樹的深度。input 輸入資料有多組,輸入t,代表有t組資料。每組資料報括兩個長度小於50的字串,...