From charlesreid1

Revision as of 06:00, 4 June 2017 by Admin (talk | contribs)

LinkedDeque is a class that implements a double ended queue using a linked list data structure.

Code

Implementation notes

This uses a doubly-linked circular list.

Interface

(implementation details)

Test

(code for a unit test)

The Class

(code for the class)

Flags