|
Data Structures and Algorithms
with Object-Oriented Design Patterns in Python |
This section presents a linked-list implementation of ordered lists.
Program
introduces
the OrderedListAsLinkedList class.
The OrderedListAsLinkedList class extends
the abstract OrderedList class
defined in Program
.

Program: OrderedListAsLinkedList class __init__ method.