| CS 1371 Dept. Presents: |
Class Queue
| Method Summary | |
|---|---|
| Queue (data) Constructor that creates a linked list stack |
|
The string representation of the Queue |
|
| enqueue ( )
Enqueue onto a Queue |
|
| dequeue ( )
Dequeue from a Queue |
|
| Method Detail |
|---|
MStack
q = Queue(data)
Creates a Queue object
Data might be another Queue
q = Queue ( ) will create an empty stack.