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 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的