00001 00016 typedef Person ItemType; 00017 00018 struct Node 00019 { ItemType item; 00020 Node *next; 00021 }; // end Node 00022 00023 Node *head;