@include <Queue>

A node in a queue.

Data Members

  • @QueueNode.data
    • Type: primitive
    • Scope: public

    • The data stored in the node.
  • @QueueNode.next
    • Type: QueueNode*
    • Scope: public

    • A pointer to the next node in the queue.

Methods