Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

- implement the QueueLinked using the linked list approach. Use C++ programming language #include QueueLinked.h template QueueLinked ::QueueNode::QueueNode(const DataType& nodeData, QueueNode* nextPtr) { } template

- implement the QueueLinked using the linked list approach. Use C++ programming language

#include "QueueLinked.h"

template QueueLinked::QueueNode::QueueNode(const DataType& nodeData, QueueNode* nextPtr) { }

template QueueLinked::QueueLinked(int maxNumber = Queue::MAX_QUEUE_SIZE) { }

template QueueLinked::QueueLinked(const QueueLinked& other) { }

template QueueLinked& QueueLinked::operator=(const QueueLinked& other) { }

template QueueLinked::~QueueLinked() { }

template void QueueLinked::enqueue(const DataType& newDataItem) throw (logic_error) { }

template DataType QueueLinked::dequeue() throw (logic_error) { DataType temp; return temp; }

template void QueueLinked::clear() { }

template bool QueueLinked::isEmpty() const { return false; }

template bool QueueLinked::isFull() const { return false; }

template void QueueLinked::putFront(const DataType& newDataItem) throw (logic_error) { }

template DataType QueueLinked::getRear() throw (logic_error) { DataType temp; return temp; }

template int QueueLinked::getLength() const { }

template void QueueLinked::showStructure() const { QueueNode *p; // Iterates through the queue

if ( isEmpty() ) cout << "Empty queue" << endl; else { cout << "Front\t"; for ( p = front ; p != 0 ; p = p->next ) { if( p == front ) { cout << '[' << p->dataItem << "] "; } else { cout << p->dataItem << " "; } } cout << "\trear" << endl; } }

/////////////////////////////////////////////////////////////////////////////////////////////////////

QueueLinked.h

#include #include

using namespace std;

#include "Queue.h"

template class QueueLinked : public Queue { public: QueueLinked(int maxNumber = Queue::MAX_QUEUE_SIZE); QueueLinked(const QueueLinked& other); QueueLinked& operator=(const QueueLinked& other); ~QueueLinked();

void enqueue(const DataType& newDataItem) throw (logic_error); DataType dequeue() throw (logic_error);

void clear();

bool isEmpty() const; bool isFull() const;

// Programming Exercise 2 void putFront(const DataType& newDataItem) throw (logic_error); DataType getRear() throw (logic_error); // Programming Exercise 3 int getLength() const;

void showStructure() const;

private: class QueueNode { public: QueueNode(const DataType& nodeData, QueueNode* nextPtr);

DataType dataItem; QueueNode* next; };

QueueNode* front; QueueNode* back; };

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Temple Of Django Database Performance

Authors: Andrew Brookins

1st Edition

1734303700, 978-1734303704

More Books

Students also viewed these Databases questions

Question

What Is acidity?

Answered: 1 week ago

Question

Explain the principles of delegation

Answered: 1 week ago

Question

State the importance of motivation

Answered: 1 week ago

Question

Discuss the various steps involved in the process of planning

Answered: 1 week ago

Question

What are the challenges associated with tunneling in urban areas?

Answered: 1 week ago

Question

Explain the function and purpose of the Job Level Table.

Answered: 1 week ago