码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • PAT A1020 Tree Traversals


    1020 Tree Traversals

    分数 25

    作者 CHEN, Yue

    单位 浙江大学

    Suppose that all the keys in a binary tree are distinct positive integers. Given the postorder and inorder traversal sequences, you are supposed to output the level order traversal sequence of the corresponding binary tree.

    Input Specification:

    Each input file contains one test case. For each case, the first line gives a positive integer N (≤30), the total number of nodes in the binary tree. The second line gives the postorder sequence and the third line gives the inorder sequence. All the numbers in a line are separated by a space.

    Output Specification:

    For each test case, print in one line the level order traversal sequence of the corresponding binary tree. All the numbers in a line must be separated by exactly one space, and there must be no extra space at the end of the line.

    Sample Input:

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

    Sample Output:

    4 1 6 3 5 7 2

     

    记得一定要为指针分配空间,否则会出现段错误,谨记!

    详细解释请前往另一篇博客:

    给定中序遍历和另外一种遍历方法确定一棵二叉树_疯疯癫癫才自由的博客-CSDN博客_怎么通过中序遍历和后序遍历确定一棵树

    1. #include <iostream>
    2. #include <cstring>
    3. #include <algorithm>
    4. #include <queue>
    5. using namespace std;
    6. typedef struct TNode* Bin;
    7. struct TNode
    8. {
    9. int data;
    10. Bin l,r;
    11. };
    12. const int N = 30;
    13. int beh[N], mid[N];
    14. int flag = 1;
    15. Bin get_tree(int behL, int behR, int midL, int midR)
    16. {
    17. if(behL > behR) //递归边界
    18. return NULL;
    19. //记得一定要为指针分配空间,否则会出现SF错误,谨记!
    20. Bin u = new TNode;
    21. int v = beh[behR];
    22. int k = 0;
    23. for(int i=midL; i<=midR; ++i)
    24. if(mid[i] == v)
    25. {
    26. k = i;
    27. break;
    28. }
    29. int lenL = k - midL; //左子树的节点数目
    30. u->data = v;
    31. //递归左边界
    32. u -> l = get_tree(behL, behL+lenL-1, midL, k-1);
    33. //递归右边界
    34. u -> r = get_tree(behL+lenL, behR-1, k+1, midR);
    35. return u;
    36. }
    37. void level_traver(Bin root)
    38. {
    39. queue<Bin> q;
    40. q.push(root);
    41. while(q.size())
    42. {
    43. Bin top = q.front();
    44. q.pop();
    45. if(flag)
    46. flag = 0;
    47. else
    48. cout << ' ';
    49. cout << top->data;
    50. if(top -> l)
    51. q.push(top -> l);
    52. if(top -> r)
    53. q.push(top -> r);
    54. }
    55. }
    56. int main()
    57. {
    58. int n;
    59. cin >> n;
    60. for(int i=0; i<n; ++i)
    61. cin >> beh[i];
    62. for(int i=0; i<n; ++i)
    63. cin >> mid[i];
    64. Bin root = NULL;
    65. root = get_tree(0, n-1, 0, n-1);
    66. level_traver(root);
    67. return 0;
    68. }

  • 相关阅读:
    回顾 — SFA:简化快速 AlexNet(模糊分类)
    CTF/AWD竞赛标准参考书+实战指南
    计算机网络最后复习
    【附源码】Python计算机毕业设计设计与实现大学常规信息管理系统
    九宫格抽奖动效
    众佰诚:开一家抖音小店需要交押金不?
    MySQL 中的反斜杠 \\,我上当了
    _001_Zotero入门
    使用 Apache DolphinScheduler 构建和部署大数据平台,将任务提交至 AWS 的实践经验
    【ESP32-Face】ESP32人脸检测MTMN 模型以及face_detect()函数详解
  • 原文地址:https://blog.csdn.net/qq_51825761/article/details/127887452
  • 最新文章
  • 【JVM】编译执行与解释执行的区别是什么?JVM 使用哪种方式?
    用 Hashids 优雅解决 C 端自增 ID 暴露问题
    V8引擎 精品漫游指南--Ignition篇(上) 指令 栈帧 槽位 调用约定 内存布局 基础内容
    LLVM Pass快速入门(四):代码插桩
    milkup:桌面端 markdown AI续写和即时渲染
    基于项目工程构建SBOM(软件物料清单)的研究
    鸿蒙应用开发UI基础第二节:鸿蒙应用程序框架核心解析与实操
    .NET 中如何快速实现 List 集合去重?
    扣子Coze实战:从0到1打造抖音+小红书热点监控智能体
    浅谈数据访问层
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号