有序表的详解

目录

有序表的介绍

树的左旋和右旋操作

AVL树的详解

SB树的详解

红黑树的介绍

SkipList的详解

有序表的介绍

       有序表是除具备哈希表所具备的功能外,有序表中的内容都是按照key有序排列的,并且增删改查等操作的时间复杂度都是O\left ( logN \right ),红黑树,AVL树,SB树,SkipList等结构都可以实现有序表,并且时间复杂度都是O\left ( logN \right ),差距仅仅在于常数方面且比较小。

树的左旋和右旋操作

        树的左旋指的是将树的头节点的右子树向左边旋转,使右子树的根节点成为头节点,然后右子树的左子树放到原来头节点的右子树,其它的不变。树的右旋就是树的头节点向右旋转,然后左子树的根节点成为头节点 ,然后左子树的右子树放到原来头节点的左子树,其它的不变。

        通过树的左旋和右旋操作可以使不平衡的树变得平衡。

AVL树的详解

       AVL树是具备左旋和右旋操作的搜索二叉树,能够自身保持平衡性。AVL树对于新加入的节点,它会从加入的位置开始出发,依次检查以当前节点为头节点的树是不是具有平衡性。删除一个节点也是同样的操作,从替换节点的上一个节点出发,当平衡性不满足时使用左旋或者右旋操作使它恢复平衡性。接下来对每种具体的平衡性被破坏的情况进行分析,有以下四种类型:

        LL型:即左子树的左边部分失衡,此时采用右旋调整;

        RR型:即右子树的右边部分失衡,此时采用左旋调整;

        LR型:即左子树的右边部分失衡,此时先将左子树的右边部分左旋,然后再将它右旋,使失衡部分的根节点成为头节点;

        RL型:即右子树的左边部分失衡,此时先将右子树的左边部分右旋,然后再将它左旋,使失衡部分的根节点成为头节点。

        而对于AVL树对于各种失衡类型的判断,在下面代码部分详细分析:

   private void rebalance(AVLNode node) {while (node != null) {Node parent = node.parent;//记录头节点int leftHeight = (node.left == null) ? -1 : ((AVLNode) node.left).height;//求左边高度,如果头节点的左子树为空,返回-1,否则返回左边的高度int rightHeight = (node.right == null) ? -1 : ((AVLNode) node.right).height;//求右边高度,如果头节点的右子树为空,返回-1,否则返回右边的高度int nodeBalance = rightHeight - leftHeight;//计算两边高度差// rebalance (-2 means left subtree outgrow, 2 means right subtree)if (nodeBalance == 2) {//如果右边失衡if (node.right.right != null) {//如果为RR型node = (AVLNode)avlRotateLeft(node);//左旋调整break;} else {//RL型node = (AVLNode)doubleRotateRightLeft(node);//先右旋再左旋调整break;}} else if (nodeBalance == -2) {//如果左边失衡if (node.left.left != null) {//如果为LL型node = (AVLNode)avlRotateRight(node);//右旋调整break;} else {//LR型node = (AVLNode)doubleRotateLeftRight(node);//先左旋再右旋调整break;}} else {updateHeight(node);//返回树的高度}node = (AVLNode)parent;//记录当前树的头节点}}private Node avlRotateLeft(Node node) {//左旋Node temp = super.rotateLeft(node);updateHeight((AVLNode)temp.left);updateHeight((AVLNode)temp);return temp;}private Node avlRotateRight(Node node) {//右旋Node temp = super.rotateRight(node);updateHeight((AVLNode)temp.right);updateHeight((AVLNode)temp);return temp;}protected Node doubleRotateRightLeft(Node node) {//先右旋再左旋node.right = avlRotateRight(node.right);return avlRotateLeft(node);}protected Node doubleRotateLeftRight(Node node) {//先左旋再右旋node.left = avlRotateLeft(node.left);return avlRotateRight(node);}private static final void updateHeight(AVLNode node) {//求树的高度int leftHeight = (node.left == null) ? -1 : ((AVLNode) node.left).height;int rightHeight = (node.right == null) ? -1 : ((AVLNode) node.right).height;node.height = 1 + Math.max(leftHeight, rightHeight);}

SB树的详解

       SB树的增删改查操作还有平衡型结构的选择方式等和AVL树是相同的。SB树对平衡性的定义有所不同:每棵子树的大小,不小于其兄弟的子树大小,既每棵叔叔树的大小,不小于其任何侄子树的大小。对于失衡状态的调整有些区别。

        LL型:左子树的左边的侄子节点大于它的叔叔树的大小,此时先右旋,然后对发生改动的节点进行平衡性检查。
        RR型:右子树的右边的侄子节点大于它的叔叔树的大小,此时先左旋,然后对发生改动的节点进行平衡性检查。

        LR型:左子树的右边的侄子节点大于它的叔叔树的大小,此时先将左子树的右边的侄子节点左旋,然后对调整后的侄子节点继续右旋,接着对发生改动的节点进行平衡性检查。

        RL型:右子树的左边的侄子节点大于它的叔叔树的大小,此时先将右子树的左边的侄子节点右旋,然后对调整后的侄子节点继续左旋,接着对发生改动的节点进行平衡性检查。

        private SBTNode<K, V> matain(SBTNode<K, V> cur) {if (cur == null) {return null;}if (cur.l != null && cur.l.l != null && cur.r != null && cur.l.l.size > cur.r.size) {//LL型cur = rightRotate(cur);//右旋调整cur.r = matain(cur.r);//检查cur = matain(cur);//检查} else if (cur.l != null && cur.l.r != null && cur.r != null && cur.l.r.size > cur.r.size) {//LR型cur.l = leftRotate(cur.l);//左旋cur = rightRotate(cur);//右旋cur.l = matain(cur.l);cur.r = matain(cur.r);cur = matain(cur);} else if (cur.r != null && cur.r.r != null && cur.l != null && cur.r.r.size > cur.l.size) {//RR型cur = leftRotate(cur);//左旋cur.l = matain(cur.l);cur = matain(cur);} else if (cur.r != null && cur.r.l != null && cur.l != null && cur.r.l.size > cur.l.size) {//RL型cur.r = rightRotate(cur.r);//右旋cur = leftRotate(cur);//左旋cur.l = matain(cur.l);cur.r = matain(cur.r);cur = matain(cur);}return cur;}private SBTNode<K, V> rightRotate(SBTNode<K, V> cur) {//右旋SBTNode<K, V> leftNode = cur.l;cur.l = leftNode.r;leftNode.r = cur;leftNode.size = cur.size;cur.size = (cur.l != null ? cur.l.size : 0) + (cur.r != null ? cur.r.size : 0) + 1;return leftNode;}private SBTNode<K, V> leftRotate(SBTNode<K, V> cur) {//左旋SBTNode<K, V> rightNode = cur.r;cur.r = rightNode.l;rightNode.l = cur;rightNode.size = cur.size;cur.size = (cur.l != null ? cur.l.size : 0) + (cur.r != null ? cur.r.size : 0) + 1;return rightNode;}

红黑树的介绍

       红黑树的要求:(1)红黑树上面的每一个点不是红就是黑;(2)头节点和叶节点都是黑;(3)红点不相邻;(4)cur从任何一个子树的头部出发到它叶节点的每一条路径,要求黑节点数一样多。其实它的这些条件保证的是红黑树中最长的路和最短的路相差没有超过两倍,因为红点不相邻,所以最长的路也就是红黑交替,而最短的路就是全是黑,然而又需要每一条路径黑节点数一样多。红黑树的结构弊端比较大,一般不使用,了解即可。

SkipList的详解

       SkipList利用随机函数打破输入规律,首先有一个默认节点,每一个节点上面有指针,而只有默认节点的指针数量可以增加,对于节点的加入,先通过随机函数确定它上面的指针的数量,根据第一个加入节点的指针的数量在默认节点上面增加指针数量,对于后续节点的加入,如果后续的节点的指针数比默认节点上的指针数多,那么在默认节点上增加指针数,如果比默认节点的指针数少,多的不需要。对于新加入的节点,从默认节点的最高层开始一层一层的选择,如果不需要增加,那么右移寻找,如果需要增加,那么增加指针数。

      SkipList的这个结构便于查询和删除操作,查询时同样从默认节点的最高层出发,通过一层一层,从左到右的筛选,可以找到需要的值,进行查询和删除操作。对于添加同样也是从默认节点的最高层出发,一层一层,从左到右筛选。

       这个结构时间复杂度为O\left ( logN \right ),因为每一个节点的指针数利用概率随机产生,也就是后续每一个节点的操作数都是前一个的一半,整体相当于一棵完全二叉树,时间复杂度就是O\left ( logN \right )

   public static class SkipListNode<K extends Comparable<K>, V> {//SkipList的建立public K key;public V val;public ArrayList<SkipListNode<K, V>> nextNodes;public SkipListNode(K k, V v) {key = k;val = v;nextNodes = new ArrayList<SkipListNode<K, V>>();}public boolean isKeyLess(K otherKey) {return otherKey != null && (key == null || key.compareTo(otherKey) < 0);}public boolean isKeyEqual(K otherKey) {return (key == null && otherKey == null)|| (key != null && otherKey != null && key.compareTo(otherKey) == 0);}}public static class SkipListMap<K extends Comparable<K>, V> {private static final double PROBABILITY = 0.5;private SkipListNode<K, V> head;private int size;private int maxLevel;public SkipListMap() {head = new SkipListNode<K, V>(null, null);head.nextNodes.add(null);size = 0;maxLevel = 0;}private SkipListNode<K, V> mostRightLessNodeInTree(K key) {if (key == null) {return null;}int level = maxLevel;SkipListNode<K, V> cur = head;while (level >= 0) {cur = mostRightLessNodeInLevel(key, cur, level--);}return cur;}private SkipListNode<K, V> mostRightLessNodeInLevel(K key, SkipListNode<K, V> cur, int level) {SkipListNode<K, V> next = cur.nextNodes.get(level);while (next != null && next.isKeyLess(key)) {cur = next;next = cur.nextNodes.get(level);}return cur;}public boolean containsKey(K key) {if (key == null) {return false;}SkipListNode<K, V> less = mostRightLessNodeInTree(key);SkipListNode<K, V> next = less.nextNodes.get(0);return next != null && next.isKeyEqual(key);}public void put(K key, V value) {if (key == null) {return;}SkipListNode<K, V> less = mostRightLessNodeInTree(key);SkipListNode<K, V> find = less.nextNodes.get(0);if (find != null && find.isKeyEqual(key)) {find.val = value;} else {size++;int newNodeLevel = 0;while (Math.random() < PROBABILITY) {newNodeLevel++;}while (newNodeLevel > maxLevel) {head.nextNodes.add(null);maxLevel++;}SkipListNode<K, V> newNode = new SkipListNode<K, V>(key, value);for (int i = 0; i <= newNodeLevel; i++) {newNode.nextNodes.add(null);}int level = maxLevel;SkipListNode<K, V> pre = head;while (level >= 0) {pre = mostRightLessNodeInLevel(key, pre, level);if (level <= newNodeLevel) {newNode.nextNodes.set(level, pre.nextNodes.get(level));pre.nextNodes.set(level, newNode);}level--;}}}public V get(K key) {if (key == null) {return null;}SkipListNode<K, V> less = mostRightLessNodeInTree(key);SkipListNode<K, V> next = less.nextNodes.get(0);return next != null && next.isKeyEqual(key) ? next.val : null;}public void remove(K key) {if (containsKey(key)) {size--;int level = maxLevel;SkipListNode<K, V> pre = head;while (level >= 0) {pre = mostRightLessNodeInLevel(key, pre, level);SkipListNode<K, V> next = pre.nextNodes.get(level);if (next != null && next.isKeyEqual(key)) {// free delete node memory -> C++pre.nextNodes.set(level, next.nextNodes.get(level));}if (level != 0 && pre == head && pre.nextNodes.get(level) == null) {head.nextNodes.remove(level);maxLevel--;}level--;}}}public K firstKey() {return head.nextNodes.get(0) != null ? head.nextNodes.get(0).key : null;}public K lastKey() {int level = maxLevel;SkipListNode<K, V> cur = head;while (level >= 0) {SkipListNode<K, V> next = cur.nextNodes.get(level);while (next != null) {cur = next;next = cur.nextNodes.get(level);}level--;}return cur.key;}public K ceillingKey(K key) {if (key == null) {return null;}SkipListNode<K, V> less = mostRightLessNodeInTree(key);SkipListNode<K, V> next = less.nextNodes.get(0);return next != null ? next.key : null;}public K floorKey(K key) {if (key == null) {return null;}SkipListNode<K, V> less = mostRightLessNodeInTree(key);SkipListNode<K, V> next = less.nextNodes.get(0);return next != null && next.isKeyEqual(key) ? next.key : less.key;}public int size() {return size;}}

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

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

相关文章

【超强笔记软件】Obsidian如何实现免费无限流量无套路云同步?

【超强笔记软件】Obsidian如何实现免费无限流量无套路云同步&#xff1f; 文章目录 【超强笔记软件】Obsidian如何实现免费无限流量无套路云同步&#xff1f;一、简介软件特色演示&#xff1a; 二、使用免费群晖虚拟机搭建群晖Synology Drive服务&#xff0c;实现局域网同步1 安…

postgresql从入门到精通 - 第35讲:中间件PgBouncer部署|PostgreSQL教程

PostgreSQL从小白到专家&#xff0c;是从入门逐渐能力提升的一个系列教程&#xff0c;内容包括对PG基础的认知、包括安装使用、包括角色权限、包括维护管理、、等内容&#xff0c;希望对热爱PG、学习PG的同学们有帮助&#xff0c;欢迎持续关注CUUG PG技术大讲堂。 第35讲&#…

【maven】【IDEA】idea中使用maven编译项目,报错java: 错误: 找不到符号 【2】

idea中使用maven编译项目,报错java: 错误: 找不到符号 错误状况展示: 如果报这种错,是因为项目中真的找不到报错的方法或者枚举 字段之类的,但实际是 : 点击 File Path

基于SRGAN的人脸图像超分辨率

引言 SRGAN是第一个将GAN用在图像超分辨率上的模型。在这之前&#xff0c;超分辨率常用的损失是L1、L2这种像素损失&#xff0c;这使得模型倾向于学习到平均的结果&#xff0c;也就是给低分辨率图像增加“模糊的细节”。SRGAN引入GAN来解决这个问题。GAN可以生成“真实”的图像…

Vue 2.0源码分析-Virtual DOM

Virtual DOM 这个概念相信大部分人都不会陌生&#xff0c;它产生的前提是浏览器中的 DOM 是很“昂贵"的&#xff0c;为了更直观的感受&#xff0c;我们可以简单的把一个简单的 div 元素的属性都打印出来&#xff0c;如图所示&#xff1a; 可以看到&#xff0c;真正的 DOM …

npm ERR! node-sass@4.13.0 postinstall: `node scripts/build.js`

npm ERR! node-sass4.13.0 postinstall: node scripts/build.js npm config set sass_binary_sitehttps://npm.taobao.org/mirrors/node-sass npm install npm run dev Microsoft Windows [版本 10.0.19045.2965] (c) Microsoft Corporation。保留所有权利。C:\Users\Administr…

R语言如何实现多元线性回归

输入数据 先把数据用excel保存为csv格式放在”我的文档”文件夹 打开R软件,不用新建,直接写 回归计算 求三个平方和 置信区间(95%)

通过内网穿透本地MariaDB数据库,实现在公网环境下使用navicat图形化工具

公网远程连接MariaDB数据库【cpolar内网穿透】 文章目录 公网远程连接MariaDB数据库【cpolar内网穿透】1. 配置MariaDB数据库1.1 安装MariaDB数据库1.2 测试局域网内远程连接 2. 内网穿透2.1 创建隧道映射2.2 测试随机地址公网远程访问3. 配置固定TCP端口地址3.1 保留一个固定的…

【点云surface】 凹包重构

1 处理过程可视化 原始数据 直通滤波过滤后 pcl::ProjectInliers结果 pcl::ExtractIndices结果 凹包结果 凸包结果 2 处理过程分析&#xff1a; 原始点云 ---> 直通滤波 --> pcl::SACSegmentation分割出平面 -->pcl::ProjectInliers投影 --> pcl::ConcaveHull凹包…

手把手教你安装 Visual Studio 2022 及其简单使用

软件下载 打开 Visual Studio 官网&#xff0c;个人选择免费的Community社区版就够用了。 软件安装 双击运行安装程序&#xff1a; 点击继续 即可&#xff1a; 等待加载完成&#xff1a; 可以看到 Visual Studio 2022 对应不同的开发需求提供了若干工作负载&#xff0c;这里以…

Go 本地搭建playground

搭建go playground 的步骤 1、安装docker 如果你使用的Ubuntu&#xff0c;docker的安装步骤可以参见这里&#xff0c;这是我之前写的在Ubuntu18.04下安装fabric&#xff0c;其中有docker的安装步骤&#xff0c;这里就不再赘述了。 CentOS下安装docker的&#xff0c;可以参见…

Ubuntu下使用protoBuf

一、protobuf简介&#xff1a; 1.1 protobuf的定义&#xff1a; protobuf是用来干嘛的&#xff1f; protobuf是一种用于 对结构数据进行序列化的工具&#xff0c;从而实现 数据存储和交换。 &#xff08;主要用于网络通信中 收发两端进行消息交互。所谓的“结构数据”是指类…