码农知识堂 - 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. }

  • 相关阅读:
    Android提取视频或音频
    Java之序列化的详细解析
    window电脑关闭docker中正在运行redis的 RDB 和AOF 持久化选项
    零基础学Linux内核之设备驱动篇(6)_字符设备_实验篇1
    【数据结构】链表相关OJ题 (万字详解)
    高速,低延,任意频丨庚顿新一代实时数据库鼎力支撑电力装备服务数字化
    【微信小程序授权】获取用户手机号,昵称
    Vant轮播多个div结合二维数组的运用
    springboot 事务注解
    识别户口本易语言代码
  • 原文地址:https://blog.csdn.net/qq_51825761/article/details/127887452
  • 最新文章
  • 沪漂五周年了:我越来越迷茫了
    Agentic Skill Routing 实战:别再把所有 Skill 塞进 AI Agent 上下文
    MySQL-Seconds_behind_master的精度误差
    [MAF预定义ChatClient中间件-03]CachingChatClient——利用缓存省钱省时间
    AI的至暗历史:从万众期待到被政府撤资,AI的两次死亡徘徊
    Agent OS :五种驯服不确定性的范式
    PortSwigger SQL注入LAB11
    数据库即时编译JIT
    [Begin]AI Learn Data Day 0
    深度学习进阶(二十七)现代 LLM 的核心架构设计其二:SwiGLU
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号