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

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
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;ireturn 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;iscanf("%d",&N);
        for(int j=0;jscanf("%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;
}

你可能感兴趣的:(PAT)