A stack based on a linked list

A stack is a linear list for which all insertions and deletions (and usually all accesses) are made at one end of the list.

This is called a FIFO structure (First In, First Out).

Example:

var o = new polygonal.ds.LinkedStack<Int>();
for (i in 0...4) o.push(i);
trace(o); //outputs:

[ LinkedStack size=4
  top
  3 -> 3
  2 -> 2
  1 -> 1
  0 -> 0
]

Constructor

@:value({ reservedSize : 0 })new (reservedSize:Int = 0, ?source:Array<T>)

Parameters:

reservedSize

if > 0, this stack maintains an object pool of node objects. Prevents frequent node allocation and thus increases performance at the cost of using more memory.

Variables

@:value(HashKey.next())read onlykey:Int = HashKey.next()

A unique identifier for this object.

A hash table transforms this key into an index of an array element by using a hash function.

@:value(false)reuseIterator:Bool = false

If true, reuses the iterator object instead of allocating a new one when calling this.iterator().

The default is false.

If this value is true, nested iterations will fail as only one iteration is allowed at a time.

read onlysize:Int

The total number of elements.

Methods

@:value({ gc : false })clear (gc:Bool = false):Void

Removes all elements.

Parameters:

gc

if true, elements are nullified upon removal so the garbage collector can reclaim used memory.

@:value({ copier : null, byRef : true })clone (byRef:Bool = true, ?copier:T ‑> T):Collection<T>

Creates and returns a shallow copy (structure only - default) or deep copy (structure & elements) of this stack.

If byRef is true, primitive elements are copied by value whereas objects are copied by reference.

If byRef is false, the copier function is used for copying elements. If omitted, clone() is called on each element assuming all elements implement Cloneable.

contains (val:T):Bool

Returns true if this stack contains val.

copy (i:Int, j:Int):LinkedStack<T>

Overwrites the element at index i with the element from index j.

An index of 0 indicates the bottommost element.

An index of this.size - 1 indicates the topmost element.

inlinedup ():LinkedStack<T>

Pops the top element of the stack, and pushes it back twice, so that an additional copy of the former top item is now on top, with the original below it.

inlineexchange ():LinkedStack<T>

Swaps the two topmost items on the stack.

inlineforEach (f:T ‑> Int ‑> T):LinkedStack<T>

Calls f on all elements.

The function signature is: f(input, index):output

  • input: current element
  • index: position relative to the bottom(=0) of the stack
  • output: element to be stored at given index

free ():Void

Destroys this object by explicitly nullifying all nodes, pointers and elements.

Improves GC efficiency/performance (optional).

get (i:Int):T

Returns the element stored at index i.

An index of 0 indicates the bottommost element.

An index of this.size - 1 indicates the topmost element.

inlineisEmpty ():Bool

Returns true only if this.size is 0.

inlineiter (f:T ‑> Void):LinkedStack<T>

Calls 'f` on all elements in order.

iterator ():Itr<T>

Returns a new LinkedStackIterator object to iterate over all elements contained in this stack.

Preserves the natural order of the stack (First-In-Last-Out).

See:

inlinepop ():T

Pops data off the stack.

Returns:

the top element.

inlinepush (val:T):Void

Pushes val onto the stack.

remove (val:T):Bool

Removes and nullifies all occurrences of val.

Returns:

true if at least one occurrence of val was removed.

rotLeft (n:Int):LinkedStack<T>

Moves the n topmost elements on the stack in a rotating fashion.

Example:

top
|3|              |2|
|2|  rotate left |1|
|1|      -->     |0|
|0|              |3|

rotRight (n:Int):LinkedStack<T>

Moves the n topmost elements on the stack in a rotating fashion.

Example:

top
|3|               |0|
|2|  rotate right |3|
|1|      -->      |2|
|0|               |1|

set (i:Int, val:T):LinkedStack<T>

Replaces the element at index i with val.

An index of 0 indicates the bottommost element.

An index of this.size - 1 indicates the topmost element.

@:value({ rvals : null })shuffle (?rvals:Array<Float>):LinkedStack<T>

Shuffles the elements of this collection by using the Fisher-Yates algorithm.

Parameters:

rvals

a list of random double values in the interval [0, 1) defining the new positions of the elements. If omitted, random values are generated on-the-fly by calling Shuffle.frand().

swap (i:Int, j:Int):LinkedStack<T>

Swaps the element stored at i with the element stored at index j.

An index of 0 indicates the bottommost element.

An index of this.size - 1 indicates the topmost element.

toArray ():Array<T>

Returns an array containing all elements in this stack.

Preserves the natural order of this stack (First-In-Last-Out).

toString ():String

Prints out all elements.

inlinetop ():T

Returns the top element of this stack.

This is the "newest" element.