手写 跳跃表 java,SkipList跳跃表(Java实现)

取自网络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

extends AbstractSet

implements SortedSet {

public E first() {

return null;

}

public E last() {

return null;

}

public Iterator iterator() {

return null;

}

public SortedSet headSet(E toElement) {

return null;

}

public SortedSet tailSet(E fromElement) {

return null;

}

public SortedSet 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> extends AbstractSortedSet {

private SkipListNode 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(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);

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 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();

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();

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> implements Iterator {

SkipList list;

SkipListNode current;

public SkipListIterator(SkipList list) {

this.list = list;

this.current = list.getHead();

}

public boolean hasNext() {

return current.nextNodes.get(0) != null;

}

public E next() {

current = (SkipListNode)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 {

private E value;

public List > nextNodes;

public E getValue() {

return value;

}

public SkipListNode(E value) {

this.value = value;

nextNodes = new ArrayList >();

}

public int level() {

return nextNodes.size()-1;

}

public String toString() {

return "SLN: " + value;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值