DoublyLinkedList

(Computer Science) Double Linked List

A Double Link List is an extension of a normal Linked List. The nodes have two pointers, one to the node in front, one to the node behind it. This allows easy traversal in either direction. In addition to a pointer to the head of a list, there may be a pointer to the tail as well.

Other lists



last edited (November 2, 2006) by bilderbikkel

Back to the page