PAT甲级1066 Root of AVL Tree

在这里插入图片描述
常规的AVL树模板题,建好树后直接输出根结点的数据即可

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
struct node{
    int data,height;
    node *l,*r;
};
int getheight(node* root)//空结点高度0
{
    if(root==NULL)return 0;
    else return root->height;
}
int getbalancefactor(node* root)//左子树高度减去右子树高度
{
    return getheight(root->l)-getheight(root->r);
}
void updataheight(node* root)//可引用?
{
    root->height=max(getheight(root->l),getheight(root->r))+1;
}
void left_rotation(node* &root)//左旋
{
    node* temp=root->r;
    root->r=temp->l;
    temp->l=root;
    updataheight(root);
    updataheight(temp);
    root=temp;
}
void right_rotation(node* &root)//右旋
{
    node* temp=root->l;
    root->l=temp->r;
    temp->r=root;
    updataheight(root);
    updataheight(temp);
    root=temp;
}
void insert(node* &root,int x)
{
    if(root==NULL)//插入位置
    {
        root=new node;
        root->data=x;
        root->height=1;
        root->l=root->r=NULL;
        return;
    }
    if(x<root->data)
    {
        insert(root->l,x);
        updataheight(root);
        if(getbalancefactor(root)==2)
        {
            if(getbalancefactor(root->l)==1)//LL型
            {
                right_rotation(root);
            }
            else//LR型,先对子树旋转
            {
                //right_rotation(root);
                left_rotation(root->l);
                right_rotation(root);
            }
        }
    }
    else
    {
        insert(root->r,x);
        updataheight(root);
        if(getbalancefactor(root)==-2)
        {
            if(getbalancefactor(root->r)==-1)//RR,对根节点左旋
            left_rotation(root);
            else
            {
                //left_rotation(root);
                right_rotation(root->r);
                left_rotation(root);
            }
        }
    }
}
int main()
{
    int n,temp;
    cin>>n;
    node* rot=NULL;
    for(int i=0;i<n;i++)
    {
        cin>>temp;
        insert(rot,temp);
    }
    cout<<rot->data<<endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值