-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
MinPriorityQueue.cs
289 lines (247 loc) · 8.82 KB
/
MinPriorityQueue.cs
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
using System;
using System.Collections.Generic;
using DataStructures.Common;
namespace DataStructures.Heaps
{
/// <summary>
/// Implements the Priority Queue Data Structure.
/// <typeparam name="TKey">Node's Value type</typeparam>
/// <typeparam name="TPriority">Node's Priority type</typeparam>
/// </summary>
public class MinPriorityQueue<TKey, TPriority>
where TKey : IComparable<TKey>
where TPriority : IComparable<TPriority>
{
/// <summary>
/// Instance variables
/// </summary>
// A dictionary of keys and number of copies in the heap.
private Dictionary<TKey, long> _keys { get; set; }
// The internal heap.
private BinaryMinHeap<PriorityQueueNode<TKey, TPriority>> _heap { get; set; }
// The priorities value comparer.
private Comparer<PriorityQueueNode<TKey, TPriority>> _priorityComparer { get; set; }
/// <summary>
/// CONSTRUCTOR
/// </summary>
public MinPriorityQueue() : this(0, null) { }
public MinPriorityQueue(uint capacity) : this(capacity, null) { }
public MinPriorityQueue(uint capacity, Comparer<PriorityQueueNode<TKey, TPriority>> priorityComparer)
{
// Make sure the TPriority is elegible for a priority
if (!_validPriorityType())
throw new NotSupportedException("The priority type is not supported.");
// Initialize comparer
if (priorityComparer == null)
_priorityComparer = Comparer<PriorityQueueNode<TKey, TPriority>>.Default;
else
_priorityComparer = priorityComparer;
// Initialize.
_keys = new Dictionary<TKey, long>();
_heap = new BinaryMinHeap<PriorityQueueNode<TKey, TPriority>>((int)capacity, this._priorityComparer);
}
/// <summary>
/// Validates the Type of TPriority. Returns true if acceptable, false otherwise.
/// </summary>
/// <returns></returns>
private bool _validPriorityType()
{
bool isValid = false;
TypeCode typeCode = Type.GetTypeCode(typeof(TPriority));
switch (typeCode)
{
//case TypeCode.DateTime:
case TypeCode.Byte:
case TypeCode.Char:
case TypeCode.Decimal:
case TypeCode.Double:
case TypeCode.Int16:
case TypeCode.Int32:
case TypeCode.Int64:
case TypeCode.SByte:
case TypeCode.Single:
case TypeCode.UInt16:
case TypeCode.UInt32:
case TypeCode.UInt64:
isValid = true;
break;
default:
isValid = false;
break;
}
return isValid;
}
/// <summary>
/// Returns the count of elements in the queue.
/// </summary>
public int Count
{
get { return _heap.Count; }
}
/// <summary>
/// Checks if the queue is empty
/// </summary>
public bool IsEmpty
{
get { return _heap.IsEmpty; }
}
/// <summary>
/// Get the default max priority, if set, raises an exception if not set.
/// Also sets the default max priority.
/// </summary>
public TPriority DefaultMaxPriority
{
get
{
object maxValue = default(TPriority);
TypeCode typeCode = Type.GetTypeCode(typeof(TPriority));
switch (typeCode)
{
case TypeCode.Byte:
maxValue = byte.MaxValue;
break;
case TypeCode.Char:
maxValue = char.MaxValue;
break;
case TypeCode.DateTime:
maxValue = DateTime.MaxValue;
break;
case TypeCode.Decimal:
maxValue = decimal.MaxValue;
break;
case TypeCode.Double:
maxValue = decimal.MaxValue;
break;
case TypeCode.Int16:
maxValue = short.MaxValue;
break;
case TypeCode.Int32:
maxValue = int.MaxValue;
break;
case TypeCode.Int64:
maxValue = long.MaxValue;
break;
case TypeCode.SByte:
maxValue = sbyte.MaxValue;
break;
case TypeCode.Single:
maxValue = float.MaxValue;
break;
case TypeCode.UInt16:
maxValue = ushort.MaxValue;
break;
case TypeCode.UInt32:
maxValue = uint.MaxValue;
break;
case TypeCode.UInt64:
maxValue = ulong.MaxValue;
break;
}
return (TPriority)maxValue;
}
}
/// <summary>
/// Returns the highest priority element.
/// </summary>
/// <returns>The at highest priority.</returns>
public TKey PeekAtMinPriority()
{
if (_heap.IsEmpty)
{
throw new ArgumentOutOfRangeException("Queue is empty.");
}
return _heap.Peek().Key;
}
/// <summary>
/// Checks for the existence of a key in the queue
/// </summary>
public bool Contains(TKey key)
{
return _keys.ContainsKey(key);
}
/// <summary>
/// Enqueue the specified key, with the default-max-priority value.
/// </summary>
public void Enqueue(TKey key)
{
Enqueue(key, DefaultMaxPriority);
}
/// <summary>
/// Enqueue the specified key, value and priority.
/// </summary>
/// <param name="value">Value.</param>
/// <param name="priority">Priority.</param>
public void Enqueue(TKey key, TPriority priority)
{
var newNode = new PriorityQueueNode<TKey, TPriority>(key, priority);
_heap.Add(newNode);
if (_keys.ContainsKey(key))
_keys[key] += 1;
else
_keys.Add(key, 1);
}
/// <summary>
/// Dequeue this instance.
/// </summary>
public TKey DequeueMin()
{
if (_heap.IsEmpty)
throw new ArgumentOutOfRangeException("Queue is empty.");
var key = _heap.ExtractMin().Key;
// Decrease the key count.
_keys[key] = _keys[key] - 1;
// Remove key if its count is zero
if (_keys[key] == 0)
_keys.Remove(key);
return key;
}
/// <summary>
/// Sets the priority.
/// </summary>
public void UpdatePriority(TKey key, TPriority newPriority)
{
// Handle boundaries errors
if (_heap.IsEmpty)
throw new ArgumentOutOfRangeException("Queue is empty.");
if (!_keys.ContainsKey(key))
throw new KeyNotFoundException();
int i;
for (i = 0; i < _heap.Count; ++i)
if (_heap[i].Key.IsEqualTo(key))
break;
_heap[i].Priority = newPriority;
}
/// <summary>
/// Clear this priority queue.
/// </summary>
public void Clear()
{
_heap.Clear();
_keys.Clear();
}
}
/// <summary>
/// The Priority-queue node.
/// </summary>
/// <typeparam name="K">Node's Key type</typeparam>
/// <typeparam name="TKey">Node's Value type</typeparam>
public class PriorityQueueNode<TKey, TPriority> : IComparable<PriorityQueueNode<TKey, TPriority>>
where TKey : IComparable<TKey>
where TPriority : IComparable<TPriority>
{
public TKey Key { get; set; }
public TPriority Priority { get; set; }
public PriorityQueueNode() : this(default(TKey), default(TPriority)) { }
public PriorityQueueNode(TKey value, TPriority priority)
{
this.Key = value;
this.Priority = priority;
}
public int CompareTo(PriorityQueueNode<TKey, TPriority> other)
{
if (other == null)
return -1;
return this.Priority.CompareTo(other.Priority);
}
}//end-of-node-class
}