![]() |
Data Abstraction and Problem Solving with C++Walls and Mirrorsby Frank M. Carrano |
![]() |
c04p227.hGo to the documentation of this file.00001 00021 // node for wait list of people waiting for certain titles 00022 struct WaitNode 00023 { string who; 00024 WaitNode *next; 00025 }; // end WaitNode 00026 00027 // node for inventory list of stock items 00028 struct StockNode 00029 { string title; 00030 int have, want; 00031 WaitNode * waitHead, *waitTail; 00032 StockNode *next; 00033 }; // end StockNode |