PAT006 Tree Traversals Again
题目:
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:
- 6
- Push 1
- Push 2
- Push 3
- Pop
- Pop
- Push 4
- Pop
- Pop
- Push 5
- Push 6
- Pop
- Pop
Sample Output:
- 3 4 2 6 5 1
分析: 主要是根据输入创建一个二叉树,然后进行后续遍历
代码:
- #pragma mark -Tree Traversals Again
- #include <stdio.h>
- typedef struct traversalTreeNode {
- int value;
- struct traversalTreeNode *left;
- struct traversalTreeNode *right;
- } TraversalTreeNode;
- int flag;
- TraversalTreeNode *createTraversalTreeNode(int value)
- {
- TraversalTreeNode *node = (TraversalTreeNode *)malloc(sizeof(TraversalTreeNode));
- node->value = value;
- node->left = NULL;
- node->right = NULL;
- return node;
- }
- void postorderTraversal(TraversalTreeNode *head)
- {
- if (head) {
- postorderTraversal(head->left);
- postorderTraversal(head->right);
- if (flag == ) {
- printf("%d", head->value);
- flag = ;
- } else {
- printf(" %d", head->value);
- }
- }
- }
- int main()
- {
- int nodeNum = ;
- scanf("%d", &nodeNum);
- int operationCount = * nodeNum;
- TraversalTreeNode *a[];
- int top = -;
- // 第一个节点肯定是PUSH
- int index = -;
- scanf("%*s %d", &index);
- TraversalTreeNode *head = createTraversalTreeNode(index);
- a[] = head;
- top = ;
- TraversalTreeNode *popItem = NULL;
- for (int i = ; i < operationCount; i++) {
- int index = -;
- char str[];
- scanf("%s", str);
- unsigned long len = strlen(str);
- if (len >= ) {
- scanf("%d", &index);
- TraversalTreeNode *newNode = createTraversalTreeNode(index);
- if (popItem) {
- if (!popItem->left) {
- popItem->left = newNode;
- } else {
- popItem->right = newNode;
- }
- } else {
- if (!a[top]->left) {
- a[top]->left = newNode;
- } else {
- a[top]->right = newNode;
- }
- }
- top++;
- a[top] = newNode;
- popItem = NULL;
- } else {
- popItem = a[top];
- a[top] = NULL;
- top--;
- }
- }
- flag = ;
- postorderTraversal(head);
- }
运行结果:
PAT006 Tree Traversals Again的更多相关文章
- Tree Traversals
Tree Traversals 原题链接 常见的二叉树遍历的题目,根据后序遍历和中序遍历求层次遍历. 通过后序遍历和中序遍历建立起一棵二叉树,然后层序遍历一下,主要难点在于树的建立,通过中序遍历和后序 ...
- HDU 1710 二叉树的遍历 Binary Tree Traversals
Binary Tree Traversals Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/O ...
- hdu1710(Binary Tree Traversals)(二叉树遍历)
Binary Tree Traversals Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/O ...
- HDU1710Binary Tree Traversals
HDU1710Binary Tree Traversals 题目大意:给一个树的前序遍历和中序遍历,要求输出后序遍历. (半年前做这道题做了两天没看懂,今天学了二叉树,回来AC了^ ^) 首先介绍一下 ...
- HDU-1701 Binary Tree Traversals
http://acm.hdu.edu.cn/showproblem.php?pid=1710 已知先序和中序遍历,求后序遍历二叉树. 思路:先递归建树的过程,后后序遍历. Binary Tree Tr ...
- 03-树2. Tree Traversals Again (25)
03-树2. Tree Traversals Again (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue ...
- HDU 1710-Binary Tree Traversals(二进制重建)
Binary Tree Traversals Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/O ...
- PAT1086:Tree Traversals Again
1086. Tree Traversals Again (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...
- Binary Tree Traversals(HDU1710)二叉树的简单应用
Binary Tree Traversals Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/O ...
随机推荐
- 【转】Android一些知识点汇总
Android常用知识点总汇 一.系统上安装了多种浏览器,能否指定某浏览器访问指定页面?请说明原由. 如果在你的android系统上安装了多种浏览器,能否指定某浏览器访问指定页面?答案当然是:肯定的. ...
- Git和Repo管理使用
Git和Repo管理使用简要介绍 http://blog.csdn.net/stevenhu_223/article/details/8828130 多仓库代码管理器Repo的安装,使用以及服务器搭建 ...
- Style对象之一
<html> <style type="text/css"> body{ background-color="#FFCC80"; bac ...
- Flutter常用布局组件
Flutter控件本身通常由许多小型.单用途的控件组成,结合起来产生强大的效果,例如,Container是一种常用的控件,由负责布局.绘画.定位和大小调整的几个控件组成,具体来说,Container是 ...
- js 获取当前时间并格式化
js 获取当前时间并格式化 CreateTime--2018年2月7日11:04:16 Author:Marydon 方式一 /** * 获取系统当前时间并格式化 * @returns yyyy- ...
- HTML-HTML5+CSS3权威指南阅读(四、媒体查询)
1.媒体类型 HTML 4和CSS 2目前支持为不同的媒体类型设定专有的样式表, 比如, 一个页面在屏幕上显示时使用无衬线字体, 而在打印时则使用衬线字体, screen 和 print 是两种已定义 ...
- unity3d控制模型的运动
这里就不多做解释了,直接上代码,只为了备忘. public class HeroMove : MonoBehaviour { private float speed;//人物行动速度 private ...
- Objective-C之定义函数
Demo1.m 一个基础的函数定义 #import<Foundation/Foundation.h> //定义一个返回值为int类型的,名为max的函数.传入的参数为两个int型数据 in ...
- EMQ -- 用户密码认证
emq 的用户密码认证 MQTT 认证设置 EMQ 消息服务器认证由一系列认证插件(Plugin)提供,系统支持按用户名密码.ClientID 或匿名认证. 系统默认开启匿名认证(anonymous) ...
- ubuntu系统安装nginx出现的错误(依赖环境没有安装完)
报错信息: error: the HTTP image filter module requires the GD library. 编译参数:(或源安装) ./configure --prefix= ...