pat甲级1086 Tree Traversals Again (25分)
note:push序列是先序序列,pop序列是中序序列,由先序和中序序列转后序序列。
代码如下:
#include <iostream>
#include <vector>
#include <stack>
using namespace std;
vector<int> value,pre,in;
int n,cnt=1;
void postorder(int root,int start,int end)
{
if(start>end) return;
int i=start;
while(i<end&&pre[root]!=in[i]) ++i;
postorder(root+1,start,i-1);
postorder(root+1+i-start,i+1,end);
printf("%d%c",value[pre[root]],n>cnt++?' ':'\n');
}
int main()
{
int num,key=0;
string temp;
stack<int> s;
cin>>n;
while(cin>>temp)
{
if(temp=="Push")
{
cin>>num;
value.push_back(num);
pre.push_back(key);
s.push(key++);
}
else
{
in.push_back(s.top());
s.pop();
}
}
postorder(0,0,n-1);
return 0;
}