当前位置:   article > 正文

【PTA L2-006】树的遍历_层序序列是先序序列吗

层序序列是先序序列吗

                                 L2-006 树的遍历 (25 分)

给定一棵二叉树的后序遍历和中序遍历,请你输出其层序遍历的序列。这里假设键值都是互不相等的正整数。

输入格式:

输入第一行给出一个正整数N(≤30),是二叉树中结点的个数。第二行给出其后序遍历序列。第三行给出其中序遍历序列。数字间以空格分隔。

输出格式:

在一行中输出该树的层序遍历的序列。数字间以1个空格分隔,行首尾不得有多余空格。

输入样例:

  1. 7
  2. 2 3 1 5 7 6 4
  3. 1 2 3 4 5 6 7

输出样例:

4 1 6 3 5 7 2

 

通过后序序列和中序序列求层序序列,与求先序序列类似,只需记录过程中的节点顺序即可

推荐阅读:已知后序与中序求先序序列

代码:

  1. #include<iostream>
  2. #include<algorithm>
  3. #include<cstring>
  4. #include<string>
  5. #include<cstdio>
  6. #include<cmath>
  7. #include<set>
  8. #include<map>
  9. using namespace std;
  10. #define ll long long
  11. #define inf 0x3f3f3f3f
  12. #define mem(a,b) memset(a,b,sizeof(a))
  13. #define closeio std::ios::sync_with_stdio(false)
  14. int post[35],mid[35],level[100005];
  15. void pre(int root,int l,int r,int index)
  16. {
  17. if(l>r)
  18. return ;
  19. int i=l;
  20. while(i<r&&mid[i]!=post[root])
  21. i++;
  22. level[index]=post[root];
  23. pre(root-1-r+i,l,i-1,index*2+1);
  24. pre(root-1,i+1,r,index*2+2);
  25. }
  26. int main()
  27. {
  28. int n,i,cnt=0;
  29. cin>>n;
  30. for(i=0;i<n;i++)
  31. cin>>post[i];
  32. for(i=0;i<n;i++)
  33. cin>>mid[i];
  34. mem(level,-1);
  35. pre(n-1,0,n-1,0);
  36. for(i=0;i<=100005;i++)
  37. {
  38. if(level[i]!=-1)
  39. {
  40. if(cnt!=n-1)
  41. {
  42. cout<<level[i]<<" ";
  43. cnt++;
  44. }
  45. else
  46. {
  47. cout<<level[i]<<endl;
  48. break;
  49. }
  50. }
  51. }
  52. return 0;
  53. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/681716
推荐阅读
相关标签
  

闽ICP备14008679号