F (1164) : B DS二叉排序树_有效的二叉排序树

Description

给你一个二叉树,判断其是否是一个有效的二叉排序树。

有效的二叉排序树定义如下:

  1. 结点的左子树只包含小于当前结点的数。

  2. 结点的右子树只包含大于当前结点的数。

  3. 所有左子树和右子树自身必须也是二叉排序树。

Input

第一行输入t,表示有t个二叉树。

第二行起,每一行首先输入n,接着输入n个整数,代表二叉树。

以此类推共输入t个二叉树。

数组形式的二叉树表示方法与题目:DS二叉树_伪层序遍历构建二叉树 相同,输入-1表示空结点。

Output

每一行输出当前二叉树是否为二叉排序树,若是,则输出true,否则输出false。

共输出t行。

Input

cpp 复制代码
4
3 2 1 3
7 5 1 4 -1 -1 3 6
7 2 1 4 -1 -1 3 6
8 9 8 -1 7 -1 6 -1 5

Output

cpp 复制代码
true
false
true
true

代码如下,难点在于两个,一个是非递归层次遍历建树,第二个是判断为有效的二叉排序树。

cpp 复制代码
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <limits.h> // 使用 INT_MIN 来初始化 pre

#define MAXN 1005

typedef struct Node
{
    int data;
    struct Node *Lchild;
    struct Node *Rchild;
} Node;

Node *Build_Level(int *a, int num)
{
    Node *ROOT = NULL; // 待会要把根节点返回
    Node *queue[MAXN]; // 队列
    int front = 0, rear = 0;
    int k = 0;
    int ch;
    ch = a[k];
    k++;
    if (ch != -1)
    {
        Node *root = (Node *)malloc(sizeof(Node));
        root->data = ch;
        root->Lchild = NULL;
        root->Rchild = NULL;
        ROOT = root;
        queue[rear++] = ROOT;
    }
    while (front != rear && k < num)
    {
        Node *s = queue[front];
        front++;
        ch = a[k];
        if (ch != -1 && k < num)
        {
            Node *news = (Node *)malloc(sizeof(Node));
            news->data = ch;
            news->Lchild = NULL;
            news->Rchild = NULL;
            s->Lchild = news;
            queue[rear++] = news;
        }
        k++;
        ch = a[k];
        if (ch != -1 && k < num)
        {
            Node *news = (Node *)malloc(sizeof(Node));
            news->data = ch;
            news->Lchild = NULL;
            news->Rchild = NULL;
            s->Rchild = news;
            queue[rear++] = news;
        }
        k++;
    }
    return ROOT;
}

bool JudgeBst(Node *T, int *pre)
{ // 判断是否为 BST
    if (T == NULL)
    {
        return true;
    }
    if (!JudgeBst(T->Lchild, pre))
    {
        return false;
    }
    if (T->data < *pre)
    {
        return false;
    }
    *pre = T->data;
    return JudgeBst(T->Rchild, pre);
}

int main()
{
    int t;
    int sum;
    scanf("%d", &t);
    while (t--)
    {
        scanf("%d", &sum);
        int *array = (int *)malloc(sizeof(int) * sum);
        for (int i = 0; i < sum; i++)
        {
            scanf("%d", &array[i]);
        }

        Node *p = Build_Level(array, sum); // p 为根节点
        int pre = INT_MIN;                 // 初始化 pre 为负无穷
        printf("%s\n", (JudgeBst(p, &pre) ? "true" : "false"));
        free(array);
    }
    return 0;
}
相关推荐
欧阳枫落11 分钟前
python 2小时学会八股文-数据结构
开发语言·数据结构·python
手握风云-24 分钟前
零基础Java第十六期:抽象类接口(二)
数据结构·算法
<但凡.1 小时前
编程之路,从0开始:知识补充篇
c语言·数据结构·算法
f狐0狸x2 小时前
【数据结构副本篇】顺序表 链表OJ
c语言·数据结构·算法·链表
Tmbcan2 小时前
zkw 线段树-原理及其扩展
数据结构·zkw 线段树
2301_801760932 小时前
数据结构--PriorityQueue
数据结构
乐悠小码2 小时前
数据结构------队列(Java语言描述)
java·开发语言·数据结构·链表·队列
爱吃生蚝的于勒7 小时前
C语言内存函数
c语言·开发语言·数据结构·c++·学习·算法
workflower13 小时前
数据结构练习题和答案
数据结构·算法·链表·线性回归
一个不喜欢and不会代码的码农13 小时前
力扣105:从先序和中序序列构造二叉树
数据结构·算法·leetcode