取自网络https://github.com/spratt/SkipList

AbstractSortedSet.java

package skiplist_m;
/******************************************************************************
* AbstractSortedSet *
* *
* Extends AbstractSet and implements SortedSet, and contains stub methods *
* *
* View README file for information about this project. *
* View LICENSE file for license information. *
******************************************************************************/ import java.util.*; abstract class AbstractSortedSet<E>
extends AbstractSet<E>
implements SortedSet<E> { public E first() {
return null;
} public E last() {
return null;
} public Iterator<E> iterator() {
return null;
} public SortedSet<E> headSet(E toElement) {
return null;
} public SortedSet<E> tailSet(E fromElement) {
return null;
} public SortedSet<E> subSet(E fromElement, E toElement) {
return null;
} public Comparator<? super E> comparator() {
return null; // uses natural ordering
}
}

SkipList.java

package skiplist_m;
/******************************************************************************
* Skiplist *
* *
* View README file for information about this project. *
* View LICENSE file for license information. *
******************************************************************************/ import java.util.Iterator; public class SkipList<E extends Comparable<E>> extends AbstractSortedSet<E> {
private SkipListNode<E> head;
private int maxLevel;
private int size; private static final double PROBABILITY = 0.5; public SkipList() {
size = 0;
maxLevel = 0;
// a SkipListNode with value null marks the beginning
head = new SkipListNode<E>(null);
// null marks the end
head.nextNodes.add(null);
} public SkipListNode getHead() {
return head;
} // Adds e to the skiplist.
// Returns false if already in skiplist, true otherwise.
public boolean add(E e) {
if(contains(e)) return false;
size++;
// random number from 0 to maxLevel+1 (inclusive)
int level = 0;
while (Math.random() < PROBABILITY)
level++;
while(level > maxLevel) { // should only happen once
head.nextNodes.add(null);
maxLevel++;
}
SkipListNode newNode = new SkipListNode<E>(e);
SkipListNode current = head;
do {
current = findNext(e,current,level);
newNode.nextNodes.add(0,current.nextNodes.get(level));
current.nextNodes.set(level,newNode);
} while (level-- > 0);
return true;
} // Returns the skiplist node with greatest value <= e
private SkipListNode find(E e) {
return find(e,head,maxLevel);
} // Returns the skiplist node with greatest value <= e
// Starts at node start and level
private SkipListNode find(E e, SkipListNode current, int level) {
do {
current = findNext(e,current,level);
} while(level-- > 0);
return current;
} // Returns the node at a given level with highest value less than e
private SkipListNode findNext(E e, SkipListNode current, int level) {
SkipListNode next = (SkipListNode)current.nextNodes.get(level);
while(next != null) {
E value = (E)next.getValue();
if(lessThan(e,value)) // e < value
break;
current = next;
next = (SkipListNode)current.nextNodes.get(level);
}
return current;
} public int size() {
return size;
} public boolean contains(Object o) {
E e = (E)o;
SkipListNode node = find(e);
return node != null &&
node.getValue() != null &&
equalTo((E)node.getValue(),e);
} public Iterator<E> iterator() {
return new SkipListIterator(this);
} /******************************************************************************
* Utility Functions *
******************************************************************************/ private boolean lessThan(E a, E b) {
return a.compareTo(b) < 0;
} private boolean equalTo(E a, E b) {
return a.compareTo(b) == 0;
} private boolean greaterThan(E a, E b) {
return a.compareTo(b) > 0;
} /******************************************************************************
* Testing *
******************************************************************************/ public static void main(String[] args) {
SkipList testList = new SkipList<Integer>();
System.out.println(testList);
testList.add(4);
System.out.println(testList);
testList.add(1);
System.out.println(testList);
testList.add(2);
System.out.println(testList);
testList = new SkipList<String>();
System.out.println(testList);
testList.add("hello");
System.out.println(testList);
testList.add("beautiful");
System.out.println(testList);
testList.add("world");
System.out.println(testList);
} public String toString() {
String s = "SkipList: ";
for(Object o : this)
s += o + ", ";
return s.substring(0,s.length()-2);
}
}

SkipListIterator.java

package skiplist_m;
/******************************************************************************
* SkipListIterator *
* *
* View README file for information about this project. *
* View LICENSE file for license information. *
******************************************************************************/ import java.util.*; public class SkipListIterator<E extends Comparable<E>> implements Iterator<E> {
SkipList<E> list;
SkipListNode<E> current; public SkipListIterator(SkipList<E> list) {
this.list = list;
this.current = list.getHead();
} public boolean hasNext() {
return current.nextNodes.get(0) != null;
} public E next() {
current = (SkipListNode<E>)current.nextNodes.get(0);
return (E)current.getValue();
} public void remove() throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
}

SkipListNode.java

package skiplist_m;
/******************************************************************************
* SkipListNode *
* *
* View README file for information about this project. *
* View LICENSE file for license information. *
******************************************************************************/ import java.util.*; public class SkipListNode<E> {
private E value;
public List<SkipListNode<E> > nextNodes; public E getValue() {
return value;
} public SkipListNode(E value) {
this.value = value;
nextNodes = new ArrayList<SkipListNode<E> >();
} public int level() {
return nextNodes.size()-1;
} public String toString() {
return "SLN: " + value;
}
}

SkipList跳跃表(Java实现)的更多相关文章

  1. 小白也能看懂的Redis教学基础篇——朋友面试被Skiplist跳跃表拦住了

    各位看官大大们,双节快乐 !!! 这是本系列博客的第二篇,主要讲的是Redis基础数据结构中ZSet(有序集合)底层实现之一的Skiplist跳跃表. 不知道那些是Redis基础数据结构的看官们,可以 ...

  2. redis skiplist (跳跃表)

    redis skiplist (跳跃表) 概述 redis skiplist 是有序的, 按照分值大小排序 节点中存储多个指向其他节点的指针 结构 zskiplist 结构 // 跳跃表 typede ...

  3. 浅析SkipList跳跃表原理及代码实现

    本文将总结一种数据结构:跳跃表.前半部分跳跃表性质和操作的介绍直接摘自<让算法的效率跳起来--浅谈“跳跃表”的相关操作及其应用>上海市华东师范大学第二附属中学 魏冉.之后将附上跳跃表的源代 ...

  4. 【转】浅析SkipList跳跃表原理及代码实现

    SkipList在Leveldb以及lucence中都广为使用,是比较高效的数据结构.由于它的代码以及原理实现的简单性,更为人们所接受.首先看看SkipList的定义,为什么叫跳跃表? "S ...

  5. 【Redis】skiplist跳跃表

    有序集合Sorted Set zadd zadd用于向集合中添加元素并且可以设置分值,比如添加三门编程语言,分值分别为1.2.3: 127.0.0.1:6379> zadd language 1 ...

  6. SkipList 跳跃表

    引子 考虑一个有序表:14->->34->->50->->66->72 从该有序表中搜索元素 < 23, 43, 59 > ,需要比较的次数分别为 ...

  7. 算法: skiplist 跳跃表代码实现和原理

    SkipList在leveldb以及lucence中都广为使用,是比较高效的数据结构.由于它的代码以及原理实现的简单性,更为人们所接受. 所有操作均从上向下逐层查找,越上层一次next操作跨度越大.其 ...

  8. 5分钟了解Redis的内部实现跳跃表(skiplist)

    跳跃表简介 跳跃表(skiplist)是一个有序的数据结构,它通过在每个节点维护不同层次指向后续节点的指针,以达到快速访问指定节点的目的.跳跃表在查找指定节点时,平均时间复杂度为,最坏时间复杂度为O( ...

  9. 跳跃表Skip List的原理和实现

    >>二分查找和AVL树查找 二分查找要求元素可以随机访问,所以决定了需要把元素存储在连续内存.这样查找确实很快,但是插入和删除元素的时候,为了保证元素的有序性,就需要大量的移动元素了.如果 ...

随机推荐

  1. lightgbm 学习资料汇总

    操作实例:https://blog.csdn.net/luoyexuge/article/details/72956491 中文文档:https://lightgbm.apachecn.org/cn/ ...

  2. bzoj 2115 [Wc2011] Xor 路径最大异或和 线性基

    题目链接 题意 给定一个 \(n(n\le 50000)\) 个点 \(m(m\le 100000)\) 条边的无向图,每条边上有一个权值.请你求一条从 \(1\)到\(n\)的路径,使得路径上的边的 ...

  3. 基于Xen实现一种domain0和domainU的应用层数据交互高效机制 - 2

    继续昨天的思路,今天先google了类似的实现domain0和domainU之间数据传输的方案 [Xen-devel] XenStore as a data transfer path?  这篇帖子讨 ...

  4. Django笔记:常见故障排除

    Django框架下MySQLdb模块在python3中无法使用的问题的解决方案 由于python3环境下目前还没有官方的mysqldb模块,Django框架中又强制要求使用mysqldb,为了解决这个 ...

  5. 阿里云服务器 centos 7 安装postgresql 11

    Postgresql简介 官方网站:https://www.postgresql.org/ 简介参考zhihu文章 https://www.zhihu.com/question/20010554 关于 ...

  6. html框架集

    通过框架集的使用定义页面分布 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> ...

  7. map、hash_map、unordered_map 的思考

    #include <map> map<string,int> dict; map是基于红黑树实现的,可以快速查找一个元素是否存在,是关系型容器,能够表达两个数据之间的映射关系. ...

  8. ORACLE普通表转换成分区表

    转http://mp.weixin.qq.com/s?__biz=MzAwMjkyMjEwNg==&mid=2247484761&idx=1&sn=ce080581145931 ...

  9. [转]使用Wireshark来检测一次HTTP连接过程

    Wireshark是一个类似tcpdump的嗅探软件,界面更人性化一些,今天我用它来检测一次HTTP连接过程. 安装好之后,先配置一下,选择Capture->Options,先设定你要嗅探的网络 ...

  10. If Value Exists Then Query Else Allow Create New in Oracle Forms An Example

    An example given below for Oracle Forms, when a value exists then execute query for that value to di ...