cds.util
Class DoublyLinkedListNode
java.lang.Object
cds.util.DoublyLinkedListNode
- class DoublyLinkedListNode
- extends java.lang.Object
A node for a doubly linked list.
Have to use a custom implementation of a linked list because we want to
store nodes in the linked list in the hash table, not just
the objects in the node. This way, when we look something
up in the hash table, we have the node, and can change the
list.
- Author:
- Tony Plate tplate@attglobal.net
Copyright 1999,2000 Tony Plate
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
next
DoublyLinkedListNode next
prev
DoublyLinkedListNode prev
obj
java.lang.Object obj
DoublyLinkedListNode
DoublyLinkedListNode(java.lang.Object obj)
hashCode
public int hashCode()