Declarations for Linked Lists
data
link
7
The data portion of each node is a type called Item, defined by a typedef.
link
null
struct Node
{
typedef int Item;
Item data;
Node *link;
};
data
link
15
data
10
Previous slide
Next slide
Back to first slide
View graphic version