给定一棵二叉树的中序遍历和前序遍历,请你先将树做个镜面反转,再输出反转后的层序遍历的序列。所谓镜面反转,是指将所有非叶结点的左右孩子对换。这里假设键值都是互不相等的正整数。
输入格式:
输入第一行给出一个正整数N(<=30),是二叉树中结点的个数。第二行给出其中序遍历序列。第三行给出其前序遍历序列。数字间以空格分隔。
输出格式:
在一行中输出该树反转后的层序遍历的序列。数字间以1个空格分隔,行首尾不得有多余空格。
输入样例:
7 1 2 3 4 5 6 7 4 1 3 2 6 5 7
输出样例:
4 6 1 7 5 3 2
解题思路:层次遍历用到的是队列,和原来不一样的地方是 这里先往队列里面加入右边的结点再加入左边的结点。
#include <iostream> using namespace std; #include <stack> #include <queue> int a[50]; int b[50]; int flag=1; struct node { int x,y,z,k; }t; queue <struct node> qu; int f(int inleft,int inright,int preleft,int preright) { int i; struct node p,q; t.x=inleft; t.y=inright; t.z=preleft; t.k=preright; qu.push(t); while(!qu.empty()) { p=qu.front(); qu.pop(); if(flag) { cout<<b[p.z]; flag=0; } else cout<<" "<<b[p.z]; for(i=p.x;i<=p.y;i++) { if(a[i]==b[p.z]) { break; } } int lsize=i-p.x; int rsize=p.y-i; if(rsize>0) { q.x=i+1; q.y=p.y; q.z=p.z+1+lsize; q.k=p.k; qu.push(q); } if(lsize>0) { q.x=p.x; q.y=i-1; q.z=p.z+1; q.k=p.z+lsize; qu.push(q); } } } int main() { int n; cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; for(int i=1;i<=n;i++) cin>>b[i]; f(1,n,1,n); cout<<"\n"; }