二叉树-已知两种遍历求第三种
1,先序和中序,输出后序#include<iostream>#include<stack>using namespace std;const int N=1010;int n,pre[N],in[N]; //先序数组和后序数组stack<int> st; //存放父节点void build(int l1,int r1,int l2,int ...