PTA 7-1 根据后序和中序遍历输出先序遍历(25 分) 递归输出

博客介绍了如何通过递归方式,将一棵树的后序遍历和中序遍历结果转化为先序遍历。内容主要探讨了递归在树遍历问题中的应用。
摘要由CSDN通过智能技术生成

递归==


(注: 博客作为交流使用,请勿抄袭应付作业)


#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <queue>
#include <vector>
#include <set>
#include <stack>
#include <map>
#include <climits>

using namespace std;

typedef long long ll;
const int maxn = 100 + 7, INF = 0x3f3f3f3f, mod = 1e9 + 7;

int n;
int a[maxn], b[maxn];

void print(int l1, int r1, int l2, int r2) {
    if(l1 > r1 || l2 > r2) return;
    //cout << l1 << " " << r1 << " == " << l2 << " " << r2 << endl;
    printf(" %d", a[r1]);
    for(int i = l2; i <=
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值