PAT甲1135 Is It A Red-Black Tree(30 分)

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

int K,N,A[50];

struct node
{
    int data;
    bool r;
    node* lchild;
    node* rchild;
};

node* newnode(int x)
{
    node* root=new node;
    root->data=abs(x);
    if(x<0)
        root->r=true;
    else
        root->r=false;
    root->lchild=NULL;
    root->rchild=NULL;
    return root;
}

void insert(node* &root,int x)
{
    if(root==NULL)
    {
        root=newnode(x);
        return;
    }
    else
    {
        if(abs(x)>=root->data)
        {
            insert(root->rchild,x);
        }
        else
        {
            insert(root->lchild,x);
        }
    }
}

node* create(int data[])
{
    node* root=NULL;
    for(int i=0;i<N;i++)
    {
        insert(root,data[i]);
    }
    return root;
}

bool flag;
int judge(node* root)
{
    if(root==NULL)return 1;
    else
    {
        if(root->r)
        {
            if(root->lchild!=NULL&&root->lchild->r)
                flag=false;
            if(root->rchild!=NULL&&root->rchild->r)
                flag=false;
        }
        int x,y;
        if(root->r)
        {
            x=judge(root->lchild);
            y=judge(root->rchild);
        }
        else
        {
            x=judge(root->lchild)+1;
            y=judge(root->rchild)+1;
        }
        if(x!=y)
        {
            flag=false;
        }
        return x;
    }
}

int main()
{
    scanf("%d",&K);
    for(int i=0;i<K;i++)
    {
        scanf("%d",&N);
        for(int j=0;j<N;j++)
        {
            scanf("%d",&A[j]);
        }
        node* root=create(A);
        flag=true;
        judge(root);
        if(root->r==false&&flag)
        {
            printf("Yes\n");
        }
        else
        {
            printf("No\n");
        }
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值