[复试机试]已知中序遍历和后序遍历,求前序遍历

Posted ペキン

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[复试机试]已知中序遍历和后序遍历,求前序遍历相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<stack>
#include<string>
using namespace std;
typedef struct no
{
    char data;
    struct no *lchild,*rchild;
}*node;
void create(node &root,string sa,string sb)///根据中/后序遍历,建树
{
    if(sa.length() == 0) return ;
    root = new no();
    root->data = sb[sb.length()-1];
    root->lchild = root->rchild = NULL;
    int len = sa.length();
    string inl,inr,pol,por;
    for(int i = 0;i < len;i ++){
        if(sa[i] == root->data){
            inr = sa.substr(i+1,len-i-1);
            inl = sa.substr(0,i);
            break;
        }
    }
    //cout<<inl<<"----"<<inr<<endl;
    int l1 = inl.length(),l2 = inr.length();
    pol = sb.substr(0,l1);///小心啊,多+1,少+1,导致半个小时找bug
    por = sb.substr(l1,l2);
    //cout<<pol<<"******"<<por<<endl;
    create(root->lchild,inl,pol);///递归建树
    create(root->rchild,inr,por);
}
void pre(node & sa){
    if(sa != NULL){
        cout<<sa->data;
        pre(sa->lchild);
        pre(sa->rchild);
    }
}
int main()
{
    string in,post;
    cout<<"输入中缀表达式:"<<endl;
    cin>>in;
    cout<<"输入后缀表达式:"<<endl;
    cin>>post;
    node head;
    head=new no();
    create(head,in,post);
    cout<<"前缀表达式为:"<<endl;
    pre(head);
    cout<<endl;
}

 

以上是关于[复试机试]已知中序遍历和后序遍历,求前序遍历的主要内容,如果未能解决你的问题,请参考以下文章

已知前序中序求后续;已知中序后序求前序;

中序遍历、前序遍历和后序遍历

已知二叉树的中序序列和后序序列,怎么求前序序列

由中序遍历和后序遍历求前序遍历

怎么根据二叉树的前序,中序,确定它的后序

二叉树遍历 已知中序后序遍历求前序遍历