| bak.pcj.list.AbstractDoubleList bak.pcj.list.DoubleArrayList bak.pcj.list.DoubleArrayStack
Constructor Summary | |
public | DoubleArrayStack() Creates a new array stack with capacity 10 and a relative
growth factor of 1.0. | public | DoubleArrayStack(DoubleCollection c) Creates a new array stack with the same elements as a
specified collection. | public | DoubleArrayStack(double[] a) Creates a new array stack with the same elements as a
specified array. | public | DoubleArrayStack(int capacity) Creates a new array stack with a specified capacity and a
relative growth factor of 1.0. | public | DoubleArrayStack(int capacity, double growthFactor) Creates a new array stack with a specified capacity and
relative growth factor. | public | DoubleArrayStack(int capacity, int growthChunk) Creates a new array stack with a specified capacity and
absolute growth factor.
The array capacity increases to capacity()+growthChunk.
This strategy is good for avoiding wasting memory. |
Method Summary | |
public double | peek() | public double | pop() | public void | push(double v) |
DoubleArrayStack | public DoubleArrayStack(DoubleCollection c)(Code) | | Creates a new array stack with the same elements as a
specified collection. The elements of the specified collection
are pushed in the collection's iteration order.
Parameters: c - the collection whose elements to add to the newstack. throws: NullPointerException - if c is null. |
DoubleArrayStack | public DoubleArrayStack(double[] a)(Code) | | Creates a new array stack with the same elements as a
specified array. The elements of the specified array
are pushed in the order of the array.
Parameters: a - the array whose elements to add to the newstack. throws: NullPointerException - if a is null. since: 1.1 |
DoubleArrayStack | public DoubleArrayStack(int capacity, double growthFactor)(Code) | | Creates a new array stack with a specified capacity and
relative growth factor.
The array capacity increases to capacity()*(1+growthFactor).
This strategy is good for avoiding many capacity increases, but
the amount of wasted memory is approximately the size of the stack.
Parameters: capacity - the initial capacity of the stack. Parameters: growthFactor - the relative amount with which to increase thethe capacity when a capacity increase is needed. throws: IllegalArgumentException - if capacity is negative;if growthFactor is negative. |
DoubleArrayStack | public DoubleArrayStack(int capacity, int growthChunk)(Code) | | Creates a new array stack with a specified capacity and
absolute growth factor.
The array capacity increases to capacity()+growthChunk.
This strategy is good for avoiding wasting memory. However, an
overhead is potentially introduced by frequent capacity increases.
Parameters: capacity - the initial capacity of the stack. Parameters: growthChunk - the absolute amount with which to increase thethe capacity when a capacity increase is needed. throws: IllegalArgumentException - if capacity is negative;if growthChunk is negative. |
peek | public double peek()(Code) | | |
push | public void push(double v)(Code) | | |
|
|