数据结构实验之查找二:平衡二叉树

本文介绍了一种根据给定序列构建平衡二叉树的方法,并通过实例演示了如何求解建立的平衡二叉树的树根。文章提供了完整的C++代码实现,包括树节点的插入、树的旋转调整等关键步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

数据结构实验之查找二:平衡二叉树

Time Limit: 400 ms Memory Limit: 65536 KiB

Submit Statistic

Problem Description

根据给定的输入序列建立一棵平衡二叉树,求出建立的平衡二叉树的树根。

Input

输入一组测试数据。数据的第1行给出一个正整数N(n <= 20),N表示输入序列的元素个数;第2行给出N个正整数,按数据给定顺序建立平衡二叉树。

Output

输出平衡二叉树的树根。

Sample Input

5
88 70 61 96 120

Sample Output

70
#include<iostream>

using namespace std;

struct bitree
{
    int data;
    int dep;
    struct bitree *lc;
    struct bitree *rc;
};
int Max(int x,int y)
{
    return x>y?x:y;
}
int depth(bitree *rt)
{
    if(!rt)
        return -1;
    return rt->dep;
}
bitree *LL(bitree *rt)
{
    bitree *p = rt->lc;
    rt->lc = p->rc;
    p->rc = rt;
    p->dep = Max(depth(p->lc),depth(p->rc))+1;
    rt->dep = Max(depth(rt->lc),depth(rt->rc))+1;
    return p;
};
bitree *RR(bitree *rt)
{
    bitree *p = rt->rc;
    rt->rc = p->lc;
    p->lc = rt;
    p->dep = Max(depth(p->lc),depth(p->rc))+1;
    rt->dep = Max(depth(rt->lc),depth(rt->rc))+1;
    return p;
};
bitree *RL(bitree *rt)
{
    rt->rc=LL(rt->rc);
    return RR(rt);
};
bitree *LR(bitree *rt)
{
    rt->lc=RR(rt->lc);
    return LL(rt);
};
bitree *Insert(bitree *rt,int x)
{
    if(!rt)
    {
        rt = new bitree;
        rt->lc = NULL;
        rt->rc = NULL;
        rt->dep = 1;
        rt->data = x;
    }
    else if(x<rt->data)
    {
        rt->lc = Insert(rt->lc,x);
        if(depth(rt->lc)-depth(rt->rc)>1)
        {
            if(x<rt->lc->data)
                rt=LL(rt);
            else
                rt=LR(rt);
        }
    }
    else if(x>rt->data)
    {
        rt->rc = Insert(rt->rc,x);
        if(depth(rt->rc)-depth(rt->lc)>1)
        {
            if(x>rt->rc->data)
                rt=RR(rt);
            else
                rt=RL(rt);
        }
    }
    rt->dep  = Max(depth(rt->lc),depth(rt->rc))+1;
    return rt;
};
int main()
{
    int i, n, x;
    bitree *root = NULL;
    cin>>n;
    for(i=0; i<n; i++)
    {
        cin>>x;
        root = Insert(root,x);
    }
    cout<<root->data<<endl;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值