|
Binary Search Tree (C++)
|
Internal node type used by the Queue class. More...
#include <Queue.h>
Public Member Functions | |
| QueueNode (Node *data) | |
| Constructs a QueueNode with the specified node pointer. | |
Public Attributes | |
| Node * | data |
| QueueNode * | next |
Internal node type used by the Queue class.
QueueNode stores a pointer to a tree Node and a link to the next queue node. This struct is used only to implement the queue's internal linked list and does not assume ownership of the Node* it stores.
|
inline |