日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

数据结构实验之二叉树八:(中序后序)求二叉树的深度

發(fā)布時間:2025/3/21 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 数据结构实验之二叉树八:(中序后序)求二叉树的深度 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

Description

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

輸入數(shù)據(jù)有多組,輸入T,代表有T組數(shù)據(jù)。每組數(shù)據(jù)包括兩個長度小于50的字符串,第一個字符串表示二叉樹的中序遍歷,第二個表示二叉樹的后序遍歷。
Output

輸出二叉樹的深度。
Sample
Input

2

dbgeafc

dgebfca

lnixu

linux

Output

4

3

#include<bits/stdc++.h>using namespace std;typedef struct node {char data;struct node *l, *r; } Tree;char mid[55], pos[55];Tree *creat(char *mid, char *pos, int len) {Tree *root;if(len == 0)return NULL;root = new Tree;root->data = pos[len - 1];int i;for(i = 0; i < len; i++){if(mid[i] == pos[len - 1])break;}root->l = creat(mid, pos, i);root->r = creat(mid + i + 1, pos + i, len - i - 1);return root; }int depth_bintree(Tree *root) {int de = 0;if(root){int left_depth = depth_bintree(root->l);int right_depth = depth_bintree(root->r);de = left_depth > right_depth ? left_depth + 1 : right_depth + 1;}return de; }int main() {int t;scanf("%d", &t);while(t--){scanf("%s", mid);scanf("%s", pos);int len = strlen(pos);Tree *root = creat(mid, pos, len);int depth= depth_bintree(root);printf("%d\n", depth);}return 0; }

總結(jié)

以上是生活随笔為你收集整理的数据结构实验之二叉树八:(中序后序)求二叉树的深度的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。