|
Data Structures and Algorithms
with Object-Oriented Design Patterns in C# |
This section presents an array-based implementation of ordered lists.
Program
introduces the OrderedListAsArray class.
The OrderedListAsArray class extends
the AbstractSearchableContainer class
introduced in Program
and it implements the OrderedList interface
defined in Program
.

Program: OrderedListAsArray fields.