Tree Recovery poj2255(前序中序遍历建立二叉树)
程序员文章站
2022-05-19 19:50:58
...
题意:
给出一个前序遍历序列和中序遍历序列,输出后序遍历序列
跟之前的给后序和中序遍历序列一样
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <string>
#include <cmath>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <sstream>
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
const int maxn = 30;
int l[maxn],r[maxn];
string fo_order,in_order;
void build(int l1,int r1,int l2,int r2)
{
if(l1 > r1){
return ;
}
char root = fo_order[l2];
int k = l1;
while(in_order[k] != root){
k++;
}
int cnt = k - l1;
build(l1,k - 1,l2 + 1,l2 + cnt);
build(k + 1,r1,l2 + cnt + 1,r2);
cout<<root;
}
int main()
{
while(cin>>fo_order>>in_order){
int strl = fo_order.size();
build(0,strl - 1,0,strl - 1);
cout<<endl;
}
return 0;
}
上一篇: 0-1字典树总结和经典例题
下一篇: poj2255
推荐阅读
-
Python利用前序和中序遍历结果重建二叉树的方法
-
PHP实现二叉树深度优先遍历(前序、中序、后序)和广度优先遍历(层次)实例详解
-
[PHP] 算法-根据前序和中序遍历结果重建二叉树的PHP实现
-
Python实现二叉树前序、中序、后序及层次遍历示例代码
-
【算法】二叉树的前序、中序、后序、层序遍历和还原。
-
Python二叉树的遍历操作示例【前序遍历,中序遍历,后序遍历,层序遍历】
-
C++实现LeetCode(105.由先序和中序遍历建立二叉树)
-
牛客网---通过前序遍历序列和中序遍历序列建立二叉树
-
tree traversal (树的遍历) - 中序遍历 (inorder traversal) - 二叉树的中序遍历
-
C二叉树前序遍历中序遍历后续遍历递归非递归