一文读懂 AVL 树


背景


AVL 树是一棵平衡的二叉查找树,于 1962 年,G. M. Adelson-Velsky 和 E. M. Landis 在他们的论文《An algorithm for the organization of information》中发表。


所谓的平衡之意,就是树中任意一个结点下左右两个子树的高度差不超过 1。(本文对于树的高度约定为:空结点高度是 0,叶子结点高度是 1。)



那 AVL 树和普通的二叉查找树有何区别呢?如图,如果我们插入的是一组有序上升或下降的数据,则一棵普通的二叉查找树必然会退化成一个单链表,其查找效率就降为 O(n)。而 AVL 树因其平衡的限制,可以始终保持 O(logn) 的时间复杂度。


具体实现与代码分析


在我们进行完插入或删除操作后,很可能会导致某个结点失去平衡,那么我们就需要把失衡结点旋转一下,使其重新恢复平衡。


经过分析,不管是插入还是删除,它们都会有四种失衡的情况:左左失衡,右右失衡,左右失衡,右左失衡。因此每次遇到失衡时,我们只需判断一下是哪个失衡,再对其进行相对应的恢复平衡操作即可。


好,下面以插入操作为例,来看下这四种失衡的庐山真面目。(以下统一约定:红色结点为新插入结点,y 结点为失衡结点)


(1)左左失衡



所谓的左左,即 "失衡结点" 的左子树比右子树高 2,左孩子下的左子树比右子树高 1。


我们只需对 "以 y 为根的子树" 进行 "左左旋转 (ll_rotate)" 即可。一次旋转后,恢复平衡。


Node * AVL::ll_rotate(Node * y)

{

    Node * x = y->left;

    y->left = x->right;

    x->right = y;

    y->height = max(get_height(y->left), get_height(y->right)) + 1;

    x->height = max(get_height(x->left), get_height(x->right)) + 1;

    return x;

}


(2)右右失衡



所谓的右右,即 "失衡结点" 的右子树比左子树高 2,右孩子下的右子树比左子树高 1。


我们只需对 "以 y 为根的子树" 进行 "右右旋转 (rr_rotate)" 即可。一次旋转后,恢复平衡。


Node * AVL::rr_rotate(Node * y)

{

    Node * x = y->right;

    y->right = x->left;

    x->left = y;

    y->height = max(get_height(y->left), get_height(y->right)) + 1;

    x->height = max(get_height(x->left), get_height(x->right)) + 1;

    return x;

}


(3)左右失衡



所谓的左右,即 "失衡结点" 的左子树比右子树高 2,左孩子下的右子树比左子树高 1。


观察发现,若先对 "以 x 为根的子树" 进行 "右右旋转 (rr_rotate)",此时 "以 y 为根的子树" 恰好符合 "左左失衡",所以再进行一次 "左左旋转 (ll_rotate)"。两次旋转后,恢复平衡。


Node * AVL::lr_rotate(Node * y)

{

    Node * x = y->left;

    y->left = rr_rotate(x);

    return ll_rotate(y);

}


(4)右左失衡



所谓的右左,即 "失衡结点" 的右子树比左子树高 2,右孩子下的左子树比右子树高 1。


观察发现,若先对 "以 x 为根的子树" 进行 "左左旋转 (ll_rotate)",此时 "以 y 为根的子树" 恰好符合 "右右失衡",所以再进行一次 "右右旋转 (rr_rotate)"。两次旋转后,恢复平衡。


Node * AVL::rl_rotate(Node * y)

{

    Node * x = y->right;

    y->right = ll_rotate(x);

    return rr_rotate(y);

}


插入操作


插入成功后,在递归回溯时依次对经过的结点判断是否失衡,若失衡就需要对其进行对应的旋转操作使其恢复平衡,在这期间,原先作为一棵子树的根结点就会因为旋转被替换,因此设置insert_real( )返回的是新根结点,这样就可以实时更新根结点。


插入操作实现代码如下:


int AVL::get_height(Node * node)

{

    if (node == nullptr)

        return 0;

    return node->height;

}


int AVL::get_balance(Node * node)

{

    if (node == nullptr)

        return 0;

    return get_height(node->left) - get_height(node->right);

}


Node * AVL::insert_real(int key, Node * node)

{

    if (node == nullptr)

        return new Node(key);


    if (key < node->key)

        node->left = insert_real(key, node->left);

    else if (key > node->key)

        node->right = insert_real(key, node->right);

    else

        return node;


    node->height = max(get_height(node->left), get_height(node->right)) + 1;


    int balance = get_balance(node);


    // 左左失衡

    if (balance > 1 && get_balance(node->left) > 0)

        return ll_rotate(node);


    // 右右失衡

    if (balance < -1 && get_balance(node->right) < 0)

        return rr_rotate(node);


    // 左右失衡

    if (balance > 1 && get_balance(node->left) < 0)

        return lr_rotate(node);


    // 右左失衡

    if (balance < -1 && get_balance(node->right) > 0)

        return rl_rotate(node);


    return node;

}


void AVL::insert(int key)

{

    header->left = insert_real(key, header->left);

}


查找操作


Node * AVL::find_real(int key, Node * node)

{

    if (node == nullptr)

        return nullptr;


    if (key < node->key)

        return find_real(key, node->left);

    else if (key > node->key)

        return find_real(key, node->right);

    else

        return node;

}


Node * AVL::find(int key)

{

    return find_real(key, header->left);

}


删除操作


删除操作的四种失衡情况和插入操作一样,读者可以参考前文。下面是删除操作的实现代码:


Node * AVL::erase_real(int key, Node * node)

{

    if (node == nullptr)

        return node;


    if (key < node->key)

        node->left = erase_real(key, node->left);

    else if (key > node->key)

        node->right = erase_real(key, node->right);

    else

    {

        if (node->left && node->right)

        {

            // 找到后继结点

            Node * x = node->right;

            while (x->left)

                x = x->left;


            // 后继直接复制

            node->key = x->key;


            // 转化为删除后继

            node->right = erase_real(x->key, node->right);

        }

        else

        {

            Node * t = node;

            node = node->left ? node->left : node->right;

            delete t;

            if (node == nullptr)

                return nullptr;

        }

    }


    node->height = max(get_height(node->left), get_height(node->right)) + 1;


    int balance = get_balance(node);


    // 左左失衡

    if (balance > 1 && get_balance(node->left) >= 0) // 需要加等号

        return ll_rotate(node);


    // 右右失衡

    if (balance < -1 && get_balance(node->right) <= 0) // 需要加等号

        return rr_rotate(node);


    // 左右失衡

    if (balance > 1 && get_balance(node->left) < 0)

        return lr_rotate(node);


    // 右左失衡

    if (balance < -1 && get_balance(node->right) > 0)

        return rl_rotate(node);


    return node;

}


void AVL::erase(int key)

{

    header->left = erase_real(key, header->left);

}


完整代码


/**

 *

 * author : 刘毅(Limer)

 * date   : 2017-08-17

 * mode   : C++

 */


#include <iostream>

#include <algorithm>


using namespace std;


struct Node

{

    int key;

    int height;

    Node * left;

    Node * right;

    Node(int key = 0)

    {

        this->key = key;

        this->height = 1;

        this->left = this->right = nullptr;

    }

};


class AVL

{

private:

    Node * header;

private:

    Node * ll_rotate(Node * y);

    Node * rr_rotate(Node * y);

    Node * lr_rotate(Node * y);

    Node * rl_rotate(Node * y);

    void destroy(Node * node);

    int get_height(Node * node);

    int get_balance(Node * node);

    Node * insert_real(int key, Node * node);

    Node * find_real(int key, Node * node);

    Node * erase_real(int key, Node * node);

    void in_order(Node * node);

public:

    AVL();

    ~AVL();

    void insert(int key);

    Node * find(int key);

    void erase(int key);

    void print();

};


Node * AVL::ll_rotate(Node * y)

{

    Node * x = y->left;

    y->left = x->right;

    x->right = y;


    y->height = max(get_height(y->left), get_height(y->right)) + 1;

    x->height = max(get_height(x->left), get_height(x->right)) + 1;


    return x;

}


Node * AVL::rr_rotate(Node * y)

{

    Node * x = y->right;

    y->right = x->left;

    x->left = y;


    y->height = max(get_height(y->left), get_height(y->right)) + 1;

    x->height = max(get_height(x->left), get_height(x->right)) + 1;


    return x;

}


Node * AVL::lr_rotate(Node * y)

{

    Node * x = y->left;

    y->left = rr_rotate(x);

    return ll_rotate(y);

}


Node * AVL::rl_rotate(Node * y)

{

    Node * x = y->right;

    y->right = ll_rotate(x);

    return rr_rotate(y);

}


void AVL::destroy(Node * node)

{

    if (node == nullptr)

        return;

    destroy(node->left);

    destroy(node->right);

    delete node;

}


int AVL::get_height(Node * node)

{

    if (node == nullptr)

        return 0;

    return node->height;

}


int AVL::get_balance(Node * node)

{

    if (node == nullptr)

        return 0;

    return get_height(node->left) - get_height(node->right);

}


Node * AVL::insert_real(int key, Node * node)

{

    if (node == nullptr)

        return new Node(key);


    if (key < node->key)

        node->left = insert_real(key, node->left);

    else if (key > node->key)

        node->right = insert_real(key, node->right);

    else

        return node;


    node->height = max(get_height(node->left), get_height(node->right)) + 1;


    int balance = get_balance(node);


    // 左左失衡

    if (balance > 1 && get_balance(node->left) > 0)

        return ll_rotate(node);


    // 右右失衡

    if (balance < -1 && get_balance(node->right) < 0)

        return rr_rotate(node);


    // 左右失衡

    if (balance > 1 && get_balance(node->left) < 0)

        return lr_rotate(node);


    // 右左失衡

    if (balance < -1 && get_balance(node->right) > 0)

        return rl_rotate(node);


    return node;

}


Node * AVL::find_real(int key, Node * node)

{

    if (node == nullptr)

        return nullptr;


    if (key < node->key)

        return find_real(key, node->left);

    else if (key > node->key)

        return find_real(key, node->right);

    else

        return node;

}


Node * AVL::erase_real(int key, Node * node)

{

    if (node == nullptr)

        return node;


    if (key < node->key)

        node->left = erase_real(key, node->left);

    else if (key > node->key)

        node->right = erase_real(key, node->right);

    else

    {

        if (node->left && node->right)

        {

            // 找到后继结点

            Node * x = node->right;

            while (x->left)

                x = x->left;


            // 后继直接复制

            node->key = x->key;


            // 转化为删除后继

            node->right = erase_real(x->key, node->right);

        }

        else

        {

            Node * t = node;

            node = node->left ? node->left : node->right;

            delete t;

            if (node == nullptr)

                return nullptr;

        }

    }


    node->height = max(get_height(node->left), get_height(node->right)) + 1;


    int balance = get_balance(node);


    // 左左失衡

    if (balance > 1 && get_balance(node->left) >= 0) // 需要加等号

        return ll_rotate(node);


    // 右右失衡

    if (balance < -1 && get_balance(node->right) <= 0) // 需要加等号

        return rr_rotate(node);


    // 左右失衡

    if (balance > 1 && get_balance(node->left) < 0)

        return lr_rotate(node);


    // 右左失衡

    if (balance < -1 && get_balance(node->right) > 0)

        return rl_rotate(node);


    return node;

}


void AVL::in_order(Node * node)

{

    if (node == nullptr)

        return;


    in_order(node->left);

    cout << node->key << " ";

    in_order(node->right);

}


AVL::AVL()

{

    header = new Node(0);

}


AVL::~AVL()

{

    destroy(header->left);

    delete header;

    header = nullptr;

}


void AVL::insert(int key)

{

    header->left = insert_real(key, header->left);

}


Node * AVL::find(int key)

{

    return find_real(key, header->left);

}


void AVL::erase(int key)

{

    header->left = erase_real(key, header->left);

}


void AVL::print()

{

    in_order(header->left);

    cout << endl;

}


int main()

{

    AVL avl;


    // test "insert"

    avl.insert(7);

    avl.insert(2);

    avl.insert(1); avl.insert(1);

    avl.insert(5);

    avl.insert(3);

    avl.insert(6);

    avl.insert(4);

    avl.insert(9);

    avl.insert(8);

    avl.insert(11); avl.insert(11);

    avl.insert(10);

    avl.insert(12);

    avl.print(); // 1 2 3 4 5 6 7 8 9 10 11 12


    // test "find"

    Node * p = nullptr;

    cout << ((p = avl.find(2)) ? p->key : -1) << endl;   //  2

    cout << ((p = avl.find(100)) ? p->key : -1) << endl; // -1


    // test "erase"

    avl.erase(1);

    avl.print(); // 2 3 4 5 6 7 8 9 10 11 12

    avl.erase(9);

    avl.print(); // 2 3 4 5 6 7 8 10 11 12

    avl.erase(11);

    avl.print(); // 2 3 4 5 6 7 8 10 12


    return 0;

}


起初构造的 AVL 树为下图:



总结


和二叉查找树相比,AVL 树的特点是时间复杂度更稳定,但缺点也是很明显的。


插入操作中,至多需要一次恢复平衡操作,递归回溯的量级为 O(logn)。有一点需要我们注意,在对第一个失衡结点进行恢复平衡后,递归回溯就应该立即停止(因为失衡结点的父亲及其祖先们肯定都是处于平衡状态的)。


但让 "递归的回溯" 中途停止,不好实现,所以我上面的编码程序都不可避免的会继续回溯,直到整棵树的根结点,而这些回溯都是没有必要的。(谢谢 LLL 的提醒,若在结点中增设父亲结点,就可以解决递归回溯的问题)


删除操作中,若存在失衡,则至少需要一次恢复平衡操作,递归回溯的量级亦为 O(logn)。与插入操作不同,当对第一个失衡结点恢复平衡后,它的父亲或者是它的祖先们也可能是非平衡的(见下图,删除 1),所以删除操作的回溯很有必要。



没有参照物对比的探讨是没有意义的,所以此文就止于此吧,有兴趣的朋友可以看下我后面《红黑树》及《AVL 树与红黑树的对比》的文章。


参考文献


维基百科. AVL 树.


GeeksforGeeks. AVL Tree | Set 1 (Insertion).


GeeksforGeeks. AVL Tree | Set 2 (Deletion).


本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/304557.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

欧几里得范数_从范数到正则化

范数是一个在数学领域中常用的工具&#xff0c;同时也是学习机器学习原理中经常碰到的概念。本文将从范数的定义出发&#xff0c;逐步带你理解其在机器学习中的应用。首先需要明确的是&#xff0c;范数是一个函数&#xff0c;在机器学习中我们通常用它来衡量向量的大小。 范数定…

C++ 自定义调试信息的输出

自定义调试信息的输出调试信息的输出方法有很多种, 例如直接用printf, 或者出错时使用perror, fprintf等将信息直接打印到终端上, 在Qt上面一般使用qDebug&#xff0c;而守护进程则一般是使用syslog将调试信息输出到日志文件中等等...使用标准的方法打印调试信息有时候不是很…

IdentityServer4之持久化很顺手的事

前言原计划打算在春节期间多分享几篇技术文章的&#xff0c;但到最后一篇也没出&#xff0c;偷懒了吗&#xff1f;算是吧&#xff0c;过程是这样的&#xff1a;每次拿出电脑&#xff0c;在孩姥姥家的院子总有阳光沐浴&#xff0c;看不清屏幕&#xff0c;回屋又有点冷(在强行找理…

java获取下周一整周的日期_获取Java中日期范围内的所有星期五

我最近遇到了一个任务,我必须在一个日期范围内获得所有星期五.我写了一小段代码,很惊讶看到一些奇怪的行为.以下是我的代码&#xff1a;public class Friday {public static void main(String[]args){String start "01/01/2009";String end "12/09/2013"…

手写体识别代码_Python识别图片中的文字

一、前言不知道大家有没有遇到过这样的问题&#xff0c;就是在某个软件或者某个网页里面有一篇文章&#xff0c;你非常喜欢&#xff0c;但是不能复制。或者像百度文档一样&#xff0c;只能复制一部分&#xff0c;这个时候我们就会选择截图保存。但是当我们想用到里面的文字时&a…

递推与储存,是动态规划的关键

小智最近由于项目需要&#xff0c;经常要接触到一些规划类的问题。那今天就给大家讲一讲旅行商问题及其解法吧。旅行商问题&#xff0c;即TSP问题&#xff08;Travelling Salesman Problem&#xff09;。问题是&#xff0c;有一个旅行商人要拜访n个城市&#xff0c;每个城市只能…

SQL 标量值函数的调用

调用 MS SQL 标量值函数&#xff0c;应该在函数前面加上 "dbo."&#xff0c;否则会报 “不是可以识别的 内置函数名称”错误。例如 DECLARE WhichDB TINYINT; SELECT WhichDB dbo. user_GetWhichDB(1);--看看是哪个数据库的 另外&#xff0c;标量值函数就相当于…

dotnet core TargetFramework 解析顺序探索

dotnet core TargetFramework 解析顺序测试Intro现在 dotnet 的 TargetFramework 越来越多&#xff0c;抛开 .NET Framework 不谈&#xff0c;如果一个类库支持多个 TargetFramework 应用实际运行的时候会使用哪个版本的 API 呢&#xff0c;之前一直都是想当然的自以为是了&…

java递归单链表查找中间元素_《数据结构与算法——C语言描述》答案 3.11 查找单链表中的特定元素(递归)...

转载请注明出处&#xff1a;http://blog.csdn.net/xdz78#include #include //查找单链表中的特定元素&#xff0c;《数据结构与算法——c语言描述》 3.11 答案int count;//全局变量自动初始化为0int m;//需要查找的元素大小typedef struct student {int data;struct student *n…

python调用robotframework_robotframework+python接口自动化的点滴记录(2)

1.在循环体内&#xff0c;赋值语句的前后名称不能一样&#xff0c;否则在跑循环的第二次时就会报错&#xff1a;TypeError: not all arguments converted during string formatting这样写是错的&#xff1a;${设置计划接口_请求body} string format ${设置计划接口_请求body}…

这种感觉真爽

今天接到客户的修改需求&#xff0c;说了一大段话&#xff0c;然后我们开始讨论解决方案。最后自己来负责前台的修改。看了六七个小时的代码&#xff0c;最后修改了一行。达到了要求。想起了以前课文中学到的一句话&#xff1a;画一条线1美元&#xff0c;知道在哪里画这条线999…

大数据时代,掌握数据分析需要做到这几点

这些年来&#xff0c;随着进入大数据时代&#xff0c;各行各业均有一个词频频被提到&#xff0c;那就是数据分析。那么数据分析究竟是什么呢&#xff1f;数据分析就是指用适当的统计分析方法对收集来的大量数据进行处理分析&#xff0c;提取有用信息并形成结论&#xff0c;从而…

93.7%的程序员!竟然都不知道Redis为什么默认16个数据库?

背景在实际项目中redis常被应用于做缓存&#xff0c;分布式锁/消息队列等。但是在搭建配置好redis服务器后很多朋友应该会发现和有这样的疑问&#xff0c;为什么redis默认建立了16个数据库&#xff0c;16个数据库的由来redis是一个字典结构的存储服务器&#xff0c;一个redis实…

python tablewidget 颜色_QT中,QTableView鼠标移动到item上时该item所在行的背景颜色变成其他颜色,这要怎么实现...

展开全部//不解释&#xff0c;自己看。不保证完整&#xff0c;仅供思路参考#include #include "TableView.h"#include #include int main(int argc, char *argv[]){QApplication a(argc, argv);QStandardItemModel model;for ( int col 0; col {QList list;for ( in…

java8 垃圾 不同_【不同的Java垃圾回收器的比较】

现在已经是2014年了&#xff0c;但是对大多数开发人员而言有两件事情仍然是个谜——java垃圾回收以及异性(码农又被嘲笑了)。由于我对后者也不是特别了解&#xff0c;我想我还是试着说说前者吧&#xff0c;尤其是随着Java8的到来&#xff0c;这个领域也发生了许多重大的变化及提…

。。。第一次。。。

记得第一次给你发短信。。问你。。数据结构期末考试有没有范围啊。。没有告诉你。。那次只是给你发短信的借口。。记得第一次打电话给你。。问你。。那个。。什么什么。。的那道题。。你会做吗。。第一次在电话里听你的声音。。是那样的甜美。。记得第一次和安子。阿昆吃饭的时…

“一边熬夜一边求不要猝死”,90后养生朋克指南,条条扎心!

随着一批又一批的90后步入中年秃头、失眠、衰老...健康的压力如影如随是时候开始养生朋克了当代青年&#xff1a;养生朋克指南养生朋克一边作死一边自救的养生方式比如一边熬夜一边涂贵价护肤品用最贵的眼霜 熬最长的夜心理活动经常是&#xff1a;一边熬夜一边祈祷自己不要猝死…

EntityFramework Core查询数据基本本质

【导读】在EntityFramework Core中、当查询出数据后&#xff0c;是如何将数据映射给实体的呢&#xff1f;本节我们预先做个基本探讨&#xff0c;后续给出其底层原理本质前不久&#xff0c;我们在探索性能时&#xff0c;给出利用反射达到性能瓶颈时的方案即使用委托&#xff0c;…

pythonmt4通讯swot矩阵_swot分析矩阵范例(各部门)

优势(Strengths)S1.团队工作氛围和谐融洽&#xff0c;作风吃苦耐劳&#xff0c;积极主动、自我改进意识强S2.品质管控专业人才工作能力强、沟通能力强&#xff0c;执行力坚决S3.产品质量管控体制、流程健全&#xff0c;拥有质量监督管控权S4.产品检测、试验设备齐全&#xff0c…

2009从知到行知识管理培训公开课最后一期

由知识管理中心&#xff08;Knowledge Management Center&#xff09;举办的“从知到行&#xff1a;知识管理理论与实施”培训班第十六期将于2009年11月26-27日于北京举办&#xff0c;这也是KMC举办的2009年最后一期面向CKO、知识管理总监、经理和知识管理专员等知识管理实施人…