Java实现跳表

2024-01-19 22:38
文章标签 java 实现 跳表

本文主要是介绍Java实现跳表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

简介

链表是一种基本的数据结构,而跳表是一种特殊的链表。跳表的每一个节点都有四个指针,上、下、左、右。当进行数据查询时,可以从最顶层开始查找,并可以向下移动,从而提高查询效率。

基本结构

在这里插入图片描述

查找数的基本步骤

  1. 从最左上角的head开始,假如当前数等于目标数,直接返回;假如当前数右指针的数小于目标数,向右移动;假如当前数右指针的数大于目标数,向下移动。
  2. 当down指针为null时,没有找到。

Java节点结构

private class Node<T> {//score不能为负数long score;T value;Node up, down, left, right;public Node(T value) {this.score = -1;this.value = value;}public Node(long score, T value) {this.score = score;this.value = value;}@Overridepublic String toString() {return "Node{" +"score=" + score +", value=" + value +", up=" + up +", down=" + down +", left=" + left +", right=" + right +'}';}
}

Java实现跳表代码

private class SkipList<T> {// 最上层链表的头指针private Node<T> head;// 最上层聊表的尾指针private Node<T> tail;// 跳表的层数private int level;// 插入链表元素的个数private int size;// 用来生成随机数private Random random;public SkipList() {this.head = new Node(Long.MIN_VALUE, null);this.tail = new Node(Long.MAX_VALUE, null);this.level = 1;this.size = 0;this.random = new Random();this.head.right = this.tail;this.tail.left = this.head;}//判断跳表中是否有指定score的节点public boolean contain(long score) {Node help = head;while (help != null) {if (help.score == score) {return true;} else if (help.right.score > score) {help = help.down;} else if (help.right.score <= score) {help = head.right;}}return false;}//返回指定score的元素public Node find(long score) {Node help = head;while (help != null) {if (help.score == score) {return help;} else if (help.right.score > score) {help = help.down;} else if (help.right.score <= score) {help = head.right;}}return null;}//在最底层,找到指定score节点的前面一个节点,public Node findPreNode(long score) {//拿到最底层的head指针,从头开始判断最底部的链表,效率不行//Node help = headToButtom();Node help = head;//开始查询指定score节点的前面一个节点。如果链表中有指定score的节点,则返回相同节点的前面一个节点while (true) {if (score <= help.right.score) {if (help.down == null) return help;else help = help.down;} else {help = help.right;}}}//返回最底层的head指针private Node headToButtom() {Node help = head;while (help.down != null) {help = help.down;}return help;}//判断跳表是否为空public boolean isEmpty() {return size != 0;}//打印最底层的所有节点public void printAll() {Node help = headToButtom();while (help != null) {System.out.println(help);help = help.right;}}//插入节点public void insert(long score, T value) {//找到目标位置的前一个节点Node pre = findPreNode(score);//判断后面节点是否是和要插入节点一样的scoreif (pre.right.score == score) {pre = pre.right;while (pre != null) {pre.value = value;pre = pre.up;}return;}//插入节点Node target = new Node(score, value);target.left = pre;target.right = pre.right;pre.right.left = target;pre.right = target;//当前所属的层级int currLevel = 1;//随机往上沿升while (random.nextDouble() > 0.5) {currLevel++;if (currLevel <= level) {//不用再最上层生成一个新的链表Node upNode = new Node(score, value);Node right = target.right;while (right.up == null) {right = right.right;}right = right.up;Node left = target.left;while (left.up == null) {left = left.left;}left = left.up;upNode.left = left;left.right = upNode;upNode.right = right;right.left = upNode;target = upNode;} else {//需要在最上方生成一个新的链表this.level++;Node upNode = new Node(score, value);Node upHead = new Node(Long.MIN_VALUE, null);Node upTail = new Node(Long.MAX_VALUE, null);upHead.right = upNode;upNode.left = upHead;upTail.left = upNode;upNode.right = upTail;target = upNode;upHead.down = this.head;this.head.up = upHead;this.head = upHead;upTail.down = this.tail;this.tail.up = upTail;this.tail = upTail;}}}//通过分值移除某一个节点public boolean remove(long score) {//先找到最底层的节点Node target = find(score);if (target == null) {return false;} else {while (target != null) {target.left.right = target.right;target.right.left = target.left;target = target.up;}return true;}}//移除某一个节点public void remove(Node node) {while (node != null) {node.left.right = node.right;node.right.left = node.left;node = node.up;}}//范围删除,包括startScore的节点public void rangeRemove(long startScore) {//找到目标位置的前一个节点Node pre = findPreNode(startScore);while (pre.right.score < Long.MAX_VALUE) {remove(pre.right);}}//范围删除,包括startScore的节点,包括endScore的节点public void rangeRemove(long startScore, long endScore) {//找到目标位置的前一个节点Node pre = findPreNode(startScore);while (pre.right.score <= endScore) {remove(pre.right);}}//包括startScore之后的节点数目public int getNodeCount(long startScore) {int result = 0;//找到目标位置的前一个节点Node pre = findPreNode(startScore);while (pre.right.score < Long.MAX_VALUE) {result++;pre = pre.right;}return result;}//获取包括startScore的节点,包括endScore的节点的节点数目public int getNodeCount(long startScore, long endScore) {int result = 0;//找到目标位置的前一个节点Node pre = findPreNode(startScore);while (pre.right.score <= endScore) {result++;pre = pre.right;}return result;}private class Node<T> {//score不能为负数long score;T value;Node up, down, left, right;public Node(T value) {this.score = -1;this.value = value;}public Node(long score, T value) {this.score = score;this.value = value;}@Overridepublic String toString() {return "Node{" +"score=" + score +", value=" + value +", up=" + up +", down=" + down +", left=" + left +", right=" + right +'}';}}}

这篇关于Java实现跳表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/623922

相关文章

JSON字符串转成java的Map对象详细步骤

《JSON字符串转成java的Map对象详细步骤》:本文主要介绍如何将JSON字符串转换为Java对象的步骤,包括定义Element类、使用Jackson库解析JSON和添加依赖,文中通过代码介绍... 目录步骤 1: 定义 Element 类步骤 2: 使用 Jackson 库解析 jsON步骤 3: 添

Java中注解与元数据示例详解

《Java中注解与元数据示例详解》Java注解和元数据是编程中重要的概念,用于描述程序元素的属性和用途,:本文主要介绍Java中注解与元数据的相关资料,文中通过代码介绍的非常详细,需要的朋友可以参... 目录一、引言二、元数据的概念2.1 定义2.2 作用三、Java 注解的基础3.1 注解的定义3.2 内

Java中使用Java Mail实现邮件服务功能示例

《Java中使用JavaMail实现邮件服务功能示例》:本文主要介绍Java中使用JavaMail实现邮件服务功能的相关资料,文章还提供了一个发送邮件的示例代码,包括创建参数类、邮件类和执行结... 目录前言一、历史背景二编程、pom依赖三、API说明(一)Session (会话)(二)Message编程客

Java中List转Map的几种具体实现方式和特点

《Java中List转Map的几种具体实现方式和特点》:本文主要介绍几种常用的List转Map的方式,包括使用for循环遍历、Java8StreamAPI、ApacheCommonsCollect... 目录前言1、使用for循环遍历:2、Java8 Stream API:3、Apache Commons

JavaScript中的isTrusted属性及其应用场景详解

《JavaScript中的isTrusted属性及其应用场景详解》在现代Web开发中,JavaScript是构建交互式应用的核心语言,随着前端技术的不断发展,开发者需要处理越来越多的复杂场景,例如事件... 目录引言一、问题背景二、isTrusted 属性的来源与作用1. isTrusted 的定义2. 为

C#提取PDF表单数据的实现流程

《C#提取PDF表单数据的实现流程》PDF表单是一种常见的数据收集工具,广泛应用于调查问卷、业务合同等场景,凭借出色的跨平台兼容性和标准化特点,PDF表单在各行各业中得到了广泛应用,本文将探讨如何使用... 目录引言使用工具C# 提取多个PDF表单域的数据C# 提取特定PDF表单域的数据引言PDF表单是一

使用Python实现高效的端口扫描器

《使用Python实现高效的端口扫描器》在网络安全领域,端口扫描是一项基本而重要的技能,通过端口扫描,可以发现目标主机上开放的服务和端口,这对于安全评估、渗透测试等有着不可忽视的作用,本文将介绍如何使... 目录1. 端口扫描的基本原理2. 使用python实现端口扫描2.1 安装必要的库2.2 编写端口扫

Java循环创建对象内存溢出的解决方法

《Java循环创建对象内存溢出的解决方法》在Java中,如果在循环中不当地创建大量对象而不及时释放内存,很容易导致内存溢出(OutOfMemoryError),所以本文给大家介绍了Java循环创建对象... 目录问题1. 解决方案2. 示例代码2.1 原始版本(可能导致内存溢出)2.2 修改后的版本问题在

PyCharm接入DeepSeek实现AI编程的操作流程

《PyCharm接入DeepSeek实现AI编程的操作流程》DeepSeek是一家专注于人工智能技术研发的公司,致力于开发高性能、低成本的AI模型,接下来,我们把DeepSeek接入到PyCharm中... 目录引言效果演示创建API key在PyCharm中下载Continue插件配置Continue引言

MySQL分表自动化创建的实现方案

《MySQL分表自动化创建的实现方案》在数据库应用场景中,随着数据量的不断增长,单表存储数据可能会面临性能瓶颈,例如查询、插入、更新等操作的效率会逐渐降低,分表是一种有效的优化策略,它将数据分散存储在... 目录一、项目目的二、实现过程(一)mysql 事件调度器结合存储过程方式1. 开启事件调度器2. 创