Linked Lists Sign Video
Average Rating: 5.00 / 5
Definition
a linked list provides the same operations as an array list, such as add, remove, isEmpty, size, and contains. But a linked list stores its elements in a fundamentally different way. Elements of a linked list are stored in small individual containers called nodes. The nodes are “linked†together, with each node storing a reference to the next node in the list. The overall linked list objects keeps references to the front and back nodes.
Source: Reges & Stepp, 2007
Example
Example sentence for context: "You can add nodes to the linked list." For a visual example of a linked list, see below: <a href="http://s254.photobucket.com/albums/hh107/aslstem/?action=view¤t=linkedlist.png" target="_blank"><img src="http://i254.photobucket.com/albums/hh107/aslstem/linkedlist.png" border="0" alt="Photobucket"></a>
Other Submissions
BROWSE
All
> Technology
> Computer Science
> Data Structures
> Linked Lists
* video needed
click here to zoom in