Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implementation of a Deque (Linked-List) in java, Is this correct? public class Deque implements DequeInterface { protected DLLNode front; protected DLLNode back; protected int numelements

Implementation of a Deque (Linked-List) in java, Is this correct?

public class Deque implements DequeInterface {

protected DLLNode front; protected DLLNode back; protected int numelements = 0; public void enqueueFront(T element) throws QueueOverflowException { DLLNode ft = new DLLNode<>(element); ft.setForward(front); if(isEmpty()) front = ft; numelements++; }

@Override public void enqueueRear(T element) throws QueueOverflowException { DLLNode bk = new DLLNode<>(element); bk.setBack(back); if(isEmpty()) back = bk; numelements++; }

@Override public T dequeueFront() throws QueueUnderflowException { if(isEmpty()) { throw new QueueUnderflowException("There is nothing in the front of the queue"); } else { numelements--; DLLNode frontnode = front.getForward(); T temp = frontnode.getInfo(); if(frontnode != null) frontnode.setBack(null); return temp; } }

@Override public T dequeueRear() throws QueueUnderflowException { if(isEmpty()) { throw new QueueUnderflowException("There is nothing in the rear of the queue"); } else { numelements--; DLLNode rearnode = back.getBack(); T temp = rearnode.getInfo(); if(rearnode != null) rearnode.setBack(null); return temp; } }

@Override public boolean isFull() { return false; }

@Override public boolean isEmpty() { return (back == null || front == null); }

@Override public int size() { return numelements; } }

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

Database Technology And Management Computers And Information Processing Systems For Business

Authors: Robert C. Goldstein

1st Edition

0471887374, 978-0471887379

More Books

Students also viewed these Databases questions