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

首頁(yè) > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

求二叉樹的深度

2019-11-10 17:03:40
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

PRoblem Description

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

Input

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

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;}
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 高碑店市| 长春市| 莒南县| 玉门市| 九寨沟县| 五常市| 固始县| 孝感市| 嘉兴市| 辽宁省| 二手房| 屏边| 墨竹工卡县| 新宁县| 大城县| 黄冈市| 清镇市| 和田县| 宁强县| 南开区| 和林格尔县| 百色市| 岳普湖县| 田林县| 铁岭县| 阜宁县| 克山县| 沧州市| 综艺| 垦利县| 漳浦县| 石家庄市| 江川县| 南靖县| 灌阳县| 阿勒泰市| 辽阳市| 宜兴市| 永春县| 庆元县| 镇江市|