Tuesday, March 6, 2012


Queue based on a singly linked list, using the Adapter design pattern

size()
isEmpty()
enqueue()
dequeue()
front()

Queue based on a Vector, using the Adapter design pattern

size()
isEmpty()
enqueue()
dequeue()
front()

Thurs, Mar 15, make your StackArray into an iterable collection

No comments:

Post a Comment