| |
| | Creating Linked Lists in C++ |
 | | A linked list is a data structure which is built from structures and pointers. |
 | | This linked list has four nodes in it, each with a link to the next node in the series. |
 | | The key part of a linked list is a structure, which holds the data for each node (the name, address, age or whatever for the items in the list), and, most importantly, a pointer to the next node. |
| richardbowles.tripod.com /cpp/linklist/linklist.htm (2593 words) |
|