|
Data Structures and Algorithms
with Object-Oriented Design Patterns in Python |
This section presents an array-based implementation of ordered lists.
Program
introduces the OrderedListAsArray class.
The OrderedListAsArray class extends
the abstract OrderedList class
defined in Program
.

Program: OrderedListAsArray class __init__ method.