From charlesreid1

Revision as of 00:07, 17 March 2019 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Circular linked lists can be implemented with either a single or a doubly linked list.

For an instance of a singly-linked circular linked list, see linked list implementations in the git.charlesreid1.com Java cs repo:

Specifically, the CLinkedList class implements a circularly linked list that is expandable but that conserves space.

For an example of a doubly-linked circular list, see the LinkedDeque implementation:


Flags