From charlesreid1

(Created page with "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 implementation...")
 
No edit summary
Line 10: Line 10:
* Wiki notes: [[StacksQueues/Java/LinkedDeque]]
* Wiki notes: [[StacksQueues/Java/LinkedDeque]]
* Git: https://charlesreid1.com:3000/cs/java/src/master/stacks-queues-deques/queues/LinkedDeque.java
* Git: https://charlesreid1.com:3000/cs/java/src/master/stacks-queues-deques/queues/LinkedDeque.java
=Flags=
{{DataStructuresFlag}}
[[Category:Linked Lists]]
[[Category:Java]]
[[Category:Circular Linked Lists]]

Revision as of 08:28, 4 June 2017

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