From charlesreid1

(Created page with "Implementation of a stack data structure using a circular linked list. ==Code== ===Interface=== (implementation details) ===Test=== (code for a unit test) ===The Class==...")
 
No edit summary
Line 1: Line 1:
Implementation of a stack data structure using a circular linked list.
LinkedDeque is a class that implements a double ended queue using a linked list data structure.


==Code==
==Code==
===Implementation notes===
This uses a doubly-linked circular list.


===Interface===
===Interface===

Revision as of 06:00, 4 June 2017

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