CSC 216 F09/LinkedList: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
'''
'''
== Linked Lists ==
== Linked List Exercise ==
'''
'''
Definition: A list consisting of items in which each item "knows the location of" (i.e.,contains a reference to) the next item.
Authors: Tyler Cross, Tyler McCraw
Purpose: To accommodate a virtually unlimited number of elements in a dynamic "array" and to provide a way for a program to be able to store elements without leaving a lot of space unused.
The purpose of this exercise is to familiarize students with the functions of linked lists.

Revision as of 02:15, 15 November 2009

Linked List Exercise

Authors: Tyler Cross, Tyler McCraw The purpose of this exercise is to familiarize students with the functions of linked lists.