Namespace MoreStructures.Stacks
Classes
ArrayBasedDataStructure<T>
Exposes properties shared by data structures based on a backing array of items of type T
.
ArrayListStack<T>
A IStack<T> implementation based on an array list of items.
LinkedListStack<T>
A IStack<T> implementation based on a singly-linked linked list of items.
Interfaces
IStack<T>
Defines the interface common to all Stack implementations for items of type T
.