首页 > 其他 > 详细

hdu 1710 Binary Tree Traversals

时间:2015-04-22 13:53:49      阅读:119      评论:0      收藏:0      [点我收藏+]
/* ***********************************************
Author        :xryz
Email         :523689985@qq.com
Created Time  :4-22 11:41:40
File Name     :BinaryTreeTraversals.cpp
************************************************ */

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;

typedef struct node *tree;
typedef struct node
{
    int data;
    tree left;
    tree right;
};

bool flag;
tree root;
int pro[1024],in[1024];

tree gettree(int *a,int *b,int n)//递归建树
{
    tree t;
    int i;
    for(i=0;i<n;i++)
    {
        if(a[0]==b[i])
        {
            t=(tree)malloc(sizeof(struct node));
            t->data=b[i];
            t->left=gettree(a+1,b,i);
            t->right=gettree(a+1+i,b+1+i,n-i-1);
            return t;
        }
    }
    return NULL;
}

void postorder(tree p)//后序遍历
{
    if(p!=NULL)
    {
        postorder(p->left);
        postorder(p->right);
        if(flag) printf(" ");
        else flag++;
        printf("%d",p->data);
    }
}

int main()
{
    int i,n;
    while(~scanf("%d",&n))
    {
        for(i=0;i<n;i++)
            scanf("%d",&pro[i]);
        for(i=0;i<n;i++)
            scanf("%d",&in[i]);
        root=gettree(pro,in,n);
        flag=0;
        postorder(root);
        printf("\n");
    }
    return 0;
}

hdu 1710 Binary Tree Traversals

原文:http://blog.csdn.net/xinag578/article/details/45193597

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!