数据结构实验之二叉树八:(中序后序)求二叉树的深度
生活随笔
收集整理的這篇文章主要介紹了
数据结构实验之二叉树八:(中序后序)求二叉树的深度
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Description
已知一顆二叉樹的中序遍歷序列和后序遍歷序列,求二叉樹的深度。
Input
輸入數據有多組,輸入T,代表有T組數據。每組數據包括兩個長度小于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; }總結
以上是生活随笔為你收集整理的数据结构实验之二叉树八:(中序后序)求二叉树的深度的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 数据结构实验之二叉树四:(先序中序)还原
- 下一篇: 迷失の搜索树