jds.collection
Class SelfOrgList

java.lang.Object
  |
  +--jds.collection.LinkedList
        |
        +--jds.collection.SelfOrgList

public class SelfOrgList
extends LinkedList

SelfOrgList - self organizing linked list; for use with book Classic Data Structures in Java by Timothy A Budd, published by Addison-Wesley, 2001.

See Also:
Serialized Form

Constructor Summary
SelfOrgList()
           
 
Method Summary
 boolean containsElement(java.lang.Object testElement)
          see if collection contains value
 
Methods inherited from class jds.collection.LinkedList
addElement, addFirst, addLast, elements, findElement, getFirst, getLast, isEmpty, removeElement, removeFirst, removeLast, size
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SelfOrgList

public SelfOrgList()
Method Detail

containsElement

public boolean containsElement(java.lang.Object testElement)
see if collection contains value
Parameters:
test - element to be tested
Returns:
true if collection contains value
Overrides:
containsElement in class LinkedList