| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 数据结构与算法 -> 平衡二叉查找树 (AVL Tree) -> 正文阅读 |
|
[数据结构与算法]平衡二叉查找树 (AVL Tree) |
?平衡二叉查找树(AVL Tree)平衡二叉查找树是空树或者一种结构平衡的二叉查找树,即叶节点高度差的绝对值不超过1,并且左右两个子树都是一棵平衡二叉树。 如果在AVL树中进行插入或删除节点,可能导致AVL树失去平衡,这种失去平衡的二叉树可以概括为四种姿态:LL(左左)、RR(右右)、LR(左右)、RL(右左)。 LL:LeftLeft,也称“左左”。插入或删除一个节点后,根节点的左孩子(Left Child)的左孩子? ? ? ?(Left?Child)还有非空节点,导致根节点的左子树高度比右子树高度高2,AVL树失去平衡。 RR:RightRight,也称“右右”。插入或删除一个节点后,根节点的右孩子(Right Child)的右孩子 (Right Child)还有非空节点,导致根节点的右子树高度比左子树高度高2,AVL树失去平衡。 LR:LeftRight,也称“左右”。插入或删除一个节点后,根节点的左孩子(Left Child)的右孩子(Right Child)还有非空节点,导致根节点的左子树高度比右子树高度高2,AVL树失去平衡。 RL:RightLeft,也称“右左”。插入或删除一个节点后,根节点的右孩子(Right Child)的左孩子(Left Child)还有非空节点,导致根节点的右子树高度比左子树高度高2,AVL树失去平衡。 平衡二叉树的最少结点数:n(h)=n(h-1)+n(h-2)+1 给定结点数为n的AVL树的最大高度为O(log2 n) 平衡二叉树的调整左单旋
右单旋
LR旋转 左结点进行右单旋,然后对其父结点(即当前结点)进行左单旋;
RL旋转 右结点进行左单旋,然后对其父结点(即当前结点)进行右单旋;
例题:Root of AVL TreeAn AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this property. Figures 1-4 illustrate the rotation rules. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Now given a sequence of insertions, you are supposed to tell the root of the resulting AVL tree. Input Specification:Each input file contains one test case. For each case, the first line contains a positive integer?N?(≤20) which is the total number of keys to be inserted. Then?N?distinct integer keys are given in the next line. All the numbers in a line are separated by a space. Output Specification:For each test case, print the root of the resulting AVL tree in one line. Sample Input 1:
?Sample Output 1:
Sample Input 2:
Sample Output 2:
Demo:
|
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 | -2024/11/25 20:49:43- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |