Declarations for Linked Lists
For this presentation, each node in the linked list is a struct, as shown here.
null
struct Node
{
typedef int Item;
Item data;
Node *link;
};
Previous slide
Next slide
Back to first slide
View graphic version