-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpriorityqueue.py
57 lines (46 loc) · 2.19 KB
/
priorityqueue.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!python
from binaryheap import BinaryMinHeap
class PriorityQueue(object):
"""PriorityQueue: a partially ordered queue with methods to enqueue items
in priority order and to access and dequeue its highest priority item.
Item pairs are stored in a binary min heap for its efficient operations."""
def __init__(self):
"""Initialize this priority queue."""
# Initialize new binary min heap to store items in this priority queue
self.heap = BinaryMinHeap()
def __repr__(self):
"""Return a string representation of this priority queue."""
return 'PriorityQueue({} items, front={})'.format(self.size(), self.front())
def is_empty(self):
"""Return True if this priority queue is empty, or False otherwise."""
return self.heap.is_empty()
def length(self):
"""Return the number of items in this priority queue."""
return self.heap.size()
def enqueue(self, item, priority):
"""Insert the given item into this priority queue in order according to
the given priority."""
# TODO: Insert given item into heap in order according to given priority
# ...
def front(self):
"""Return the item at the front of this priority queue without removing
it, or None if this priority queue is empty."""
if self.size() == 0:
return None
# TODO: Return minimum item from heap
# ...
def dequeue(self):
"""Remove and return the item at the front of this priority queue,
or raise ValueError if this priority queue is empty."""
if self.size() == 0:
raise ValueError('Priority queue is empty and has no front item')
# TODO: Remove and return minimum item from heap
# ...
def push_pop(self, item, priority):
"""Remove and return the item at the front of this priority queue,
and insert the given item in order according to the given priority.
This method is more efficient than calling dequeue and then enqueue."""
if self.size() == 0:
raise ValueError('Priority queue is empty and has no front item')
# TODO: Replace and return minimum item from heap
# ...