linkedList
Class DoubleList

java.lang.Object
  extended by linkedList.DoubleList

public class DoubleList
extends java.lang.Object


Constructor Summary
DoubleList()
           
 
Method Summary
 void clear()
           
static DoubleList copy(DoubleListIterator iter)
           
 double current()
           
 boolean hasNext()
           
 void insert(double value)
           
 DoubleListIterator iterator()
           
 int length()
           
 void moveToHead()
           
 double next()
           
 void remove()
           
 double[] toDoubleArray()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DoubleList

public DoubleList()
Method Detail

insert

public void insert(double value)

next

public double next()

current

public double current()

remove

public void remove()

clear

public void clear()

length

public int length()

moveToHead

public void moveToHead()

hasNext

public boolean hasNext()

iterator

public DoubleListIterator iterator()

copy

public static DoubleList copy(DoubleListIterator iter)

toDoubleArray

public double[] toDoubleArray()