dataStructures
Class SkipList.SkipNode

java.lang.Object
  |
  +--dataStructures.SkipList.SkipNode

protected static class SkipList.SkipNode
extends java.lang.Object


Field Summary
protected  java.lang.Object element
           
protected  java.lang.Comparable key
           
protected  SkipList.SkipNode[] next
           
 
Constructor Summary
protected SkipList.SkipNode(java.lang.Object theKey, java.lang.Object theElement, int size)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

key

protected java.lang.Comparable key

element

protected java.lang.Object element

next

protected SkipList.SkipNode[] next
Constructor Detail

SkipList.SkipNode

protected SkipList.SkipNode(java.lang.Object theKey,
                            java.lang.Object theElement,
                            int size)