First page Back Continue Last page Graphics
IntQueue class definition
- class IntQueue {
- struct Node {struct Node * next; int value;};
- public:
- IntQueue ( int = 10 );
- ~IntQueue ( );
- bool isEmpty( ) const;
- bool isFull( ) const;
- int queueCount( ) const;
- bool enqueue(const int & value);
- bool dequeue(int & value);