PAT L2-004. 这是二叉搜索树吗?
原题链接
简单
作者:
青丝蛊
,
2021-04-09 21:20:39
,
所有人可见
,
阅读 246
#include <bits/stdc++.h>
using namespace std;
const int N = 10010;
int pre[N];
vector<int> post;
bool f;
void getpost(int l, int r)
{
if (l > r) return;
int i = l + 1, j = r;
if (!f)
{
while (i <= r && pre[i] < pre[l]) i++;
while (j > l && pre[j] >= pre[l]) j--;
}
else
{
while (i <= r && pre[i] >= pre[l]) i++;
while (j > l && pre[j] < pre[l]) j--;
}
if (i - j != 1) return;
getpost(l + 1, j);
getpost(i, r);
post.push_back(pre[l]);
}
int main()
{
int n;
cin >> n;
for (int i = 0; i < n; i++) cin >> pre[i];
getpost(0, n - 1);
if (post.size() != n)
{
f = true; // 镜像再尝试一下
post.clear();
getpost(0, n - 1);
}
if (post.size() == n)
{
printf("YES\n%d", post[0]);
for (int i = 1; i < n; i++) cout << ' '<< post[i];
}
else puts("NO");
return 0;
}