Sleeping_Zky 2017-09-01 13:31 采纳率: 0%
浏览 1883

PAT甲级 1086. 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

然后是我自己写的代码:

#include
#include
#include
#include

using namespace std;

#define maxn 35

int NUM;
int n[maxn];
int index;

struct Node
{
int data;
Node* lchild;
Node* rchild;
}node;

Node* create()
{
if(n[index]==-1)
{
index++;
return NULL;
}
if(index>=2*NUM)
return NULL;
Node* root =new Node;
root->data=n[index];
root->lchild=root->rchild=NULL;
index++;
root->lchild=create();
root->rchild=create();
return root;
}

void postorder(Node* root)
{
if(root==NULL)
return;
postorder(root->lchild);
postorder(root->rchild);
printf("%d",root->data);
if(index+1!=NUM)
printf(" ");
index++;
}

int main()
{
scanf("%d",&NUM);
string word;
for(int i=0;i {
cin>>word;
if(word=="Push")
cin>>n[i];
if(word=="Pop")
n[i]=-1;
}
Node * root;
root =create();
index=0;
postorder(root);
return 0;
}

不知道为啥过不了最后一个点

  • 写回答

1条回答 默认 最新

  • threenewbee 2017-09-01 15:54
    关注
    评论

报告相同问题?

悬赏问题

  • ¥15 jupyterthemes 设置完毕后没有效果
  • ¥15 matlab图像高斯低通滤波
  • ¥15 针对曲面部件的制孔路径规划,大家有什么思路吗
  • ¥15 钢筋实图交点识别,机器视觉代码
  • ¥15 如何在Linux系统中,但是在window系统上idea里面可以正常运行?(相关搜索:jar包)
  • ¥50 400g qsfp 光模块iphy方案
  • ¥15 两块ADC0804用proteus仿真时,出现异常
  • ¥15 关于风控系统,如何去选择
  • ¥15 这款软件是什么?需要能满足我的需求
  • ¥15 SpringSecurityOauth2登陆前后request不一致