题目:

An inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that when a 6-node binary tree (with the keys numbered from 1 to 6) is traversed, the stack operations are: push(1); push(2); push(3); pop(); pop(); push(4); pop(); pop(); push(5); push(6); pop(); pop(). Then a unique binary tree (shown in Figure 1) can be generated from this sequence of operations. Your task is to give the postorder traversal sequence of this tree.


Figure 1

Input Specification:

Each input file contains one test case. For each case, the first line contains a positive integer N (<=30) which is the total number of nodes in a tree (and hence the nodes are numbered from 1 to N). Then 2N lines follow, each describes a stack operation in the format: "Push X" where X is the index of the node being pushed onto the stack; or "Pop" meaning to pop one node from the stack.

Output Specification:

For each test case, print the postorder traversal sequence of the corresponding tree in one line. A solution is guaranteed to exist. All the numbers must be separated by exactly one space, and there must be no extra space at the end of the line.

Sample Input:

  1. 6
  2. Push 1
  3. Push 2
  4. Push 3
  5. Pop
  6. Pop
  7. Push 4
  8. Pop
  9. Pop
  10. Push 5
  11. Push 6
  12. Pop
  13. Pop

Sample Output:

  1. 3 4 2 6 5 1

分析: 主要是根据输入创建一个二叉树,然后进行后续遍历

代码:

  1. #pragma mark -Tree Traversals Again
  2. #include <stdio.h>
  3.  
  4. typedef struct traversalTreeNode {
  5. int value;
  6. struct traversalTreeNode *left;
  7. struct traversalTreeNode *right;
  8. } TraversalTreeNode;
  9.  
  10. int flag;
  11.  
  12. TraversalTreeNode *createTraversalTreeNode(int value)
  13. {
  14. TraversalTreeNode *node = (TraversalTreeNode *)malloc(sizeof(TraversalTreeNode));
  15. node->value = value;
  16. node->left = NULL;
  17. node->right = NULL;
  18. return node;
  19. }
  20.  
  21. void postorderTraversal(TraversalTreeNode *head)
  22. {
  23. if (head) {
  24. postorderTraversal(head->left);
  25. postorderTraversal(head->right);
  26.  
  27. if (flag == ) {
  28. printf("%d", head->value);
  29. flag = ;
  30. } else {
  31. printf(" %d", head->value);
  32. }
  33. }
  34. }
  35.  
  36. int main()
  37. {
  38. int nodeNum = ;
  39. scanf("%d", &nodeNum);
  40.  
  41. int operationCount = * nodeNum;
  42. TraversalTreeNode *a[];
  43.  
  44. int top = -;
  45. // 第一个节点肯定是PUSH
  46. int index = -;
  47. scanf("%*s %d", &index);
  48. TraversalTreeNode *head = createTraversalTreeNode(index);
  49. a[] = head;
  50. top = ;
  51.  
  52. TraversalTreeNode *popItem = NULL;
  53. for (int i = ; i < operationCount; i++) {
  54. int index = -;
  55. char str[];
  56. scanf("%s", str);
  57. unsigned long len = strlen(str);
  58. if (len >= ) {
  59. scanf("%d", &index);
  60. TraversalTreeNode *newNode = createTraversalTreeNode(index);
  61. if (popItem) {
  62. if (!popItem->left) {
  63. popItem->left = newNode;
  64. } else {
  65. popItem->right = newNode;
  66. }
  67. } else {
  68. if (!a[top]->left) {
  69. a[top]->left = newNode;
  70. } else {
  71. a[top]->right = newNode;
  72. }
  73. }
  74.  
  75. top++;
  76. a[top] = newNode;
  77. popItem = NULL;
  78. } else {
  79. popItem = a[top];
  80. a[top] = NULL;
  81. top--;
  82. }
  83. }
  84.  
  85. flag = ;
  86. postorderTraversal(head);
  87. }

运行结果:

PAT006 Tree Traversals Again的更多相关文章

  1. Tree Traversals

    Tree Traversals 原题链接 常见的二叉树遍历的题目,根据后序遍历和中序遍历求层次遍历. 通过后序遍历和中序遍历建立起一棵二叉树,然后层序遍历一下,主要难点在于树的建立,通过中序遍历和后序 ...

  2. HDU 1710 二叉树的遍历 Binary Tree Traversals

    Binary Tree Traversals Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/O ...

  3. hdu1710(Binary Tree Traversals)(二叉树遍历)

    Binary Tree Traversals Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/O ...

  4. HDU1710Binary Tree Traversals

    HDU1710Binary Tree Traversals 题目大意:给一个树的前序遍历和中序遍历,要求输出后序遍历. (半年前做这道题做了两天没看懂,今天学了二叉树,回来AC了^ ^) 首先介绍一下 ...

  5. HDU-1701 Binary Tree Traversals

    http://acm.hdu.edu.cn/showproblem.php?pid=1710 已知先序和中序遍历,求后序遍历二叉树. 思路:先递归建树的过程,后后序遍历. Binary Tree Tr ...

  6. 03-树2. Tree Traversals Again (25)

    03-树2. Tree Traversals Again (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue ...

  7. HDU 1710-Binary Tree Traversals(二进制重建)

    Binary Tree Traversals Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/O ...

  8. PAT1086:Tree Traversals Again

    1086. Tree Traversals Again (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...

  9. Binary Tree Traversals(HDU1710)二叉树的简单应用

    Binary Tree Traversals Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/O ...

随机推荐

  1. 【转】Android一些知识点汇总

    Android常用知识点总汇 一.系统上安装了多种浏览器,能否指定某浏览器访问指定页面?请说明原由. 如果在你的android系统上安装了多种浏览器,能否指定某浏览器访问指定页面?答案当然是:肯定的. ...

  2. Git和Repo管理使用

    Git和Repo管理使用简要介绍 http://blog.csdn.net/stevenhu_223/article/details/8828130 多仓库代码管理器Repo的安装,使用以及服务器搭建 ...

  3. Style对象之一

    <html> <style type="text/css"> body{ background-color="#FFCC80"; bac ...

  4. Flutter常用布局组件

    Flutter控件本身通常由许多小型.单用途的控件组成,结合起来产生强大的效果,例如,Container是一种常用的控件,由负责布局.绘画.定位和大小调整的几个控件组成,具体来说,Container是 ...

  5. js 获取当前时间并格式化

      js 获取当前时间并格式化 CreateTime--2018年2月7日11:04:16 Author:Marydon 方式一 /** * 获取系统当前时间并格式化 * @returns yyyy- ...

  6. HTML-HTML5+CSS3权威指南阅读(四、媒体查询)

    1.媒体类型 HTML 4和CSS 2目前支持为不同的媒体类型设定专有的样式表, 比如, 一个页面在屏幕上显示时使用无衬线字体, 而在打印时则使用衬线字体, screen 和 print 是两种已定义 ...

  7. unity3d控制模型的运动

    这里就不多做解释了,直接上代码,只为了备忘. public class HeroMove : MonoBehaviour { private float speed;//人物行动速度 private ...

  8. Objective-C之定义函数

    Demo1.m 一个基础的函数定义 #import<Foundation/Foundation.h> //定义一个返回值为int类型的,名为max的函数.传入的参数为两个int型数据 in ...

  9. EMQ -- 用户密码认证

    emq 的用户密码认证 MQTT 认证设置 EMQ 消息服务器认证由一系列认证插件(Plugin)提供,系统支持按用户名密码.ClientID 或匿名认证. 系统默认开启匿名认证(anonymous) ...

  10. ubuntu系统安装nginx出现的错误(依赖环境没有安装完)

    报错信息: error: the HTTP image filter module requires the GD library. 编译参数:(或源安装) ./configure --prefix= ...