SDUT 3343 数据结构实验之二叉树四:还原二叉树

点击打开题目链接

#include <bits/stdc++.h>
using namespace std;

struct node
{
    char data;
    node *right, *left;
};

int lenth, k;
char str1[60], str2[60];
node *creat();
int high(node *root);//二叉树高度
node *build(int low, int high);//还原二叉树

int main()
{
    int n;
    while(cin >> n)
    {
        k = 0;
        scanf("%s", str1);
        scanf("%s", str2);
        lenth = strlen(str2);
        node *root = build(0,n-1);
        cout << high(root) << endl;
    }
    return 0;
}

node *creat()
{
    node *root = new node;
    root -> left = NULL;
    root -> right = NULL;
    return root;
}

int high(node *root)
{
    int highleft, highright;
    if(root)
    {
        highleft = high(root -> left);
        highright = high(root -> right);
        return max(highleft, highright)+1;
    }
    else return 0;
}

node *build(int low, int high)
{
    int flag;
    if(low > high)
        return NULL;
    for(int i = low; i <= high; i++)
    {
        if(str1[k] == str2[i])
        {
            flag = i;
            break;
        }
    }
    k++;
    node *root = creat();
    root -> data = str2[flag];
    root -> left = build(low, flag-1);
    root -> right = build(flag+1,high);
    return root;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值