![]() |
Data Abstraction and Problem Solving with C++Walls and Mirrorsby Frank M. Carrano |
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ListNode< T > Class Template Reference#include <ListNodeT.h>
Detailed Descriptiontemplate<typename T>
ADT list - Pointer-based implementation -- TEMPLATE VERSION
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Private Member Functions | |
| ListNode () | |
| ListNode (const T &nodeItem, ListNode *ptr) | |
Private Attributes | |
| T | item |
| ListNode * | next |
Friends | |
| class | List< T > |
|
|||||||||
|
Definition at line 27 of file ListNodeT.h. |
|
||||||||||||||||
|
Definition at line 28 of file ListNodeT.h. |
|
|||||
|
Definition at line 36 of file ListNodeT.h. |
|
|||||
|
A data item on the list. Definition at line 31 of file ListNodeT.h. Referenced by List< T >::insert(). |
|
|||||
|
Pointer to next node. Definition at line 33 of file ListNodeT.h. Referenced by List< T >::find(), and List< T >::insert(). |
1.4.6