This exercise calls for you to design and implement a version of the
general Sequence
ADT that uses an array in a circular
fashion. The array should be dynamically expanded when needed. (Do
not use the built-in Vector
class.) Include an
elements()
method in the class that returns an enumerator
for the sequence.
UP to CSCI 433 assignments document?