国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

求二叉樹的深度

2019-11-10 19:12:34
字體:
來源:轉載
供稿:網友

PRoblem Description

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

Input

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

Output

輸出二叉樹的深度。

Example Input

2dbgeafcdgebfcalnixulinux

Example Output

43

 

#include<stdio.h>#include<string.h>#include<stdlib.h>typedef struct node{    char data;    struct node *lc,*rc;}bitree;int max;bitree * create(int zlen,char hst[51], char zst[51]){    if(zlen<=0)        return NULL;    int i;    bitree * t;    t=(bitree *)malloc(sizeof(bitree));    t->data=hst[0];    for(i=0;i<zlen;i++)    {        if(zst[i]==hst[0])            break;    }    t->lc=create(i,hst-zlen+i,zst);    t->rc=create(zlen-i-1,hst-1,zst+i+1);    return t;}void pre_show(int count,bitree * t){    int k;    if(t)    {        if(count==0)            count=1;        k=count;        if(k>max)            max=k;        pre_show(++k,t->lc);        pre_show(++count,t->rc);    }}int main(){    int zlen,hlen,t;    char zst[51],hst[51];    bitree * tree;    scanf("%d",&t);    while(t--)    {        max=0;        scanf("%s%s",zst,hst);        zlen=strlen(zst);        hlen=strlen(hst);        tree=create(zlen,hst+hlen-1,zst);        pre_show(0,tree);        printf("%d/n",max);    }    return 0;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 太康县| 正镶白旗| 囊谦县| 阿鲁科尔沁旗| 象山县| 合作市| 文山县| 石嘴山市| 大冶市| 尼勒克县| 崇阳县| 通海县| 太保市| 麦盖提县| 边坝县| 元谋县| 乃东县| 卢湾区| 新疆| 乐山市| 宿松县| 东阿县| 栾城县| 田阳县| 西藏| 黄山市| 札达县| 太仆寺旗| 马龙县| 阳信县| 雅江县| 牡丹江市| 合水县| 江山市| 合作市| 安宁市| 洛扎县| 台山市| 惠安县| 通化市| 蕲春县|