Jump to content

Doubly-linked list/Element definition: Difference between revisions

m
(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}}==
Cookies help us deliver our services. By using our services, you agree to our use of cookies.