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

2021-09-14 05:31:08 字數 1102 閱讀 3383

time limit: 1000 ms memory limit: 65536 kib

submit

statistic

problem description

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

input

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

output

輸出二叉樹的深度。

sample input

2

dbgeafc

dgebfca

lnixu

linux

sample output

4

3

#includeusing namespace std;

typedef struct bitnode

*bitree;

char in[51], post[51];

int m;

bitree build(bitree root, char in, char post, int n)

root = (bitree)malloc(sizeof(bitnode));

root-> data = post[n - 1];

int i;

for(i = 0; i < n; i++)

}root-> lchild = build(root-> lchild, in, post, i);

root-> rchild = build(root-> rchild, in + i + 1, post + i, n - i - 1);

return root;

}int shendu(bitree root)

int len1 = shendu(root-> lchild);

int len2 = shendu(root-> rchild);

return len1 > len2 ? len1 + 1 : len2 + 1;

}int main(void)

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的字串,...