Contents    Page-10    Prev    Next    Page+10    Index   

LinkedList

LinkedList implements a List as a doubly-linked list, with both forward and backward pointers.

This provides a good implementation of a linked list, stack, queue, and deque (often pronounced ``deck'') or double-ended queue.

Advantage:

Disadvantages: