Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement the Priority Queue ADT using sorted linked list (Example below shows the implementation of the unbounded Priority Queue ADT using a Python list) class

Implement the Priority Queue ADT using sorted linked list (Example below shows the implementation of the unbounded Priority Queue ADT using a Python list)

class PriorityQueue :

# Create an empty unbounded priority queue.

def __init__( self ):

self._qList = list()

# Returns True if the queue is empty.

def isEmpty( self ):

return len( self ) == 0

# Returns the number of items in the queue.

def __len__( self ):

return len( self._qList )

# Adds the given item to the queue.

def enqueue( self, item, priority ):

# Create a new instance of the storage class and append it to the list.

entry = _PriorityQEntry( item, priority )

self._qList.append( entry )

# Removes and returns the first item in the queue.

def dequeue( self ) :

assert not self.isEmpty(), "Cannot dequeue from an empty queue."

# Find the entry with the highest priority.

highest = self._qList[i].priority

for i in range( self.len() ) :

# See if the ith entry contains a higher priority (smaller integer).

if self._qList[i].priority < highest :

highest = self._qList[i].priority

# Remove the entry with the highest priority and return the item.

entry = self._qList.pop( highest )

return entry.item

# Private storage class for associating queue items with their priority.

class _PriorityQEntry( object ):

def __init__( self, item, prioity ):

self.item = item

self.priority = priority

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 Driven Web Sites

Authors: Joline Morrison, Mike Morrison

2nd Edition

? 061906448X, 978-0619064488

More Books

Students also viewed these Databases questions

Question

64 Incident and emergency response plans.

Answered: 1 week ago

Question

Explain the function and purpose of the Job Level Table.

Answered: 1 week ago