Data Structures and Algorithms with Object-Oriented Design Patterns in C#
next up previous contents index

Fields

Objects of the OrderedListAsLinkedList class contain one field, linkedList, which is a linked list of ComparableObjects. The linkedList is used to hold the items in the ordered list. Since a linked list is used, there is no notion of an inherent limit on the number of items which can be placed in the ordered list. Items can be inserted until the available memory is exhausted.


next up previous contents index

Bruno Copyright © 2001 by Bruno R. Preiss, P.Eng. All rights reserved.