Jump to content

Doubly-linked list/Element definition: Difference between revisions

+ AutoHotkey
(+ AutoHotkey)
Line 80:
1993: Clinton; 2001: Bush; 2008: Obama;
2008: Obama; 2001: Bush; 1993: Clinton; </pre>
=={{header|AutoHotkey}}==
<lang AutoHotkey>a_prev = 0
a = 1
a_next = b
b_prev = a
b = 2
b_next = 0</lang>
 
=={{header|C}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.