PAT甲级1043题(判断二叉搜索树)


1.题目介绍

1043

2.考察点,难度

二叉树类,二叉树遍历,难度中

3.解题代码

#include <bits/stdc++.h>
using namespace std;

const int N=1010;
int preorder[N],postorder[N],inorder[N],idx;

bool build(int il,int ir,int pl, int pr, int type){

    if(il>ir)   return true;
    int root = preorder[pl];
    int i;
    if(type==0){
        for(i=il;i<=ir;i++)
            if(inorder[i]==root)
                break;
        if(i>ir)    return false;
    }else{
        for(i=ir;i>=il;i--)
            if(inorder[i]==root)
                break;
        if(i<il)    return false;
    }
    bool res=true;
    if(!build(il,i-1,pl+1,pl+1+i-1+il,type)) res= false;
    if(!build(i+1,ir,pl+1+i-1-il+1,pr,type))  res=false;
    postorder[idx++]=root;
    return res;
}

int main(){

    int n;
    cin>>n;
    for(int i=0;i<n;i++)    {
        cin>>preorder[i];
        inorder[i]=preorder[i];
    }
    sort(inorder,inorder+n);
    if(build(0,n-1,0,n-1,0)){
        puts("YES");
        cout<<postorder[0];
        for(int i=1;i<n;i++)    cout<<" "<<postorder[i];
        cout<<endl;
    }else{
        reverse(inorder,inorder+n);
        idx = 0;
        if (build(0, n - 1, 0, n - 1, 1))
        {
            puts("YES");
            cout << postorder[0];
            for (int i = 1; i < n; i ++ ) cout << ' ' << postorder[i];
            cout << endl;
        }
        else puts("NO");
    }
    return 0;
}

4.原题地址

https://pintia.cn/problem-sets/994805342720868352/problems/994805440976633856


文章作者: Peyton
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 Peyton !
  目录