Doubly-linked list/Element definition: Difference between revisions

Content deleted Content added
CL linked to Doubly-Linked List page
Line 105:
=={{header|Common Lisp}}==
 
<lang lisp>(defstruct dlist head tail)
Code is on the [[Doubly-Linked List]] page.
(defstruct dlink content prev next)</lang>
 
CodeSee isthe functions on the [[Doubly-Linked List]] page for the usage of these structures.
 
=={{header|D}}==