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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
use std::{cmp::Ordering, collections::BinaryHeap};
use crate::PriorityQueue;
pub(crate) struct Item<K, T> {
key: K,
value: T,
}
impl<K: Ord + std::fmt::Debug, T: std::fmt::Debug> std::fmt::Debug for Item<K, T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "({:?}: {:?})", self.key, self.value)
}
}
impl<K: Ord + std::fmt::Debug, T: std::fmt::Debug> std::fmt::Debug for PriorityQueue<K, T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
std::fmt::Debug::fmt(&self.0, f)
}
}
impl<K: Ord, T> PartialEq<Self> for Item<K, T> {
fn eq(&self, other: &Self) -> bool {
Ord::cmp(self, other).is_eq()
}
}
impl<K: Ord, T> Eq for Item<K, T> {}
impl<K: Ord, T> PartialOrd<Self> for Item<K, T> {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Ord::cmp(self, other).into()
}
}
impl<K: Ord, T> Ord for Item<K, T> {
fn cmp(&self, other: &Self) -> Ordering {
self.key.cmp(&other.key)
}
}
impl<K, T> Clone for Item<K, T>
where
K: Clone,
T: Clone,
{
fn clone(&self) -> Self {
Item {
key: self.key.clone(),
value: self.value.clone(),
}
}
}
impl<K, T> Clone for PriorityQueue<K, T>
where
K: Clone + Ord,
T: Clone,
{
fn clone(&self) -> Self {
Self(self.0.clone())
}
}
impl<K: Ord, T> PriorityQueue<K, T> {
/// Create a new instance.
pub fn new() -> Self {
PriorityQueue(Default::default())
}
/// Insert `value` so that it is ordered according to `key`.
pub fn insert(&mut self, key: K, value: T) {
self.0.push(Item { key, value });
}
/// Pop the highest-priority item value off the queue.
pub fn pop_value(&mut self) -> Option<T> {
self.0.pop().map(|t| t.value)
}
/// Pop the highest-priority item key and value off the queue.
pub fn pop(&mut self) -> Option<(K, T)> {
self.0.pop().map(|t| (t.key, t.value))
}
/// Iterate all items ordered from highest to lowest priority.
pub fn iter_unordered(&self) -> impl Iterator<Item = &T> {
self.0.iter().map(|t| &t.value)
}
/// Turn this instance into an iterator over its keys and values in arbitrary order.
pub fn into_iter_unordered(self) -> impl Iterator<Item = (K, T)> {
self.0.into_vec().into_iter().map(|item| (item.key, item.value))
}
/// Return true if the queue is empty.
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
/// Returns the greatest item `(K, T)` tuple, as ordered by `K`, if the queue is not empty, without removing it.
pub fn peek(&self) -> Option<(&K, &T)> {
self.0.peek().map(|e| (&e.key, &e.value))
}
/// Drop all items from the queue, without changing its capacity.
pub fn clear(&mut self) {
self.0.clear()
}
}
impl<K: Ord, T> FromIterator<(K, T)> for PriorityQueue<K, T> {
fn from_iter<I: IntoIterator<Item = (K, T)>>(iter: I) -> Self {
let mut q = PriorityQueue(BinaryHeap::new());
for (k, v) in iter {
q.insert(k, v);
}
q
}
}
|