You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -20,31 +20,31 @@ public class BinaryHeapMappedPriorityQueue<T> : IPriorityQueue<T> where T : IPri
20
20
21
21
#region Constructors
22
22
/// <summary>
23
-
/// Initializes a new instance of <see cref="BinaryHeapMappedPriorityQueue{T}"/> class that is empty and has the default initial capacity
23
+
/// Initializes a new instance of <see cref="MappedBinaryHeapPriorityQueue{T}"/> class that is empty and has the default initial capacity
24
24
/// </summary>
25
-
publicBinaryHeapMappedPriorityQueue()
25
+
publicMappedBinaryHeapPriorityQueue()
26
26
{
27
27
_heap=newList<T>();
28
28
29
29
_map=newDictionary<T,List<int>>();
30
30
}
31
31
32
32
/// <summary>
33
-
/// Initializes a new instance of <see cref="BinaryHeapMappedPriorityQueue{T}"/> class that is empty and has the specified initial capacity
33
+
/// Initializes a new instance of <see cref="MappedBinaryHeapPriorityQueue{T}"/> class that is empty and has the specified initial capacity
34
34
/// </summary>
35
-
/// <param name="capacity">The number of elements the <see cref="BinaryHeapMappedPriorityQueue{T}"/> can initially store</param>
36
-
publicBinaryHeapMappedPriorityQueue(intcapacity)
35
+
/// <param name="capacity">The number of elements the <see cref="MappedBinaryHeapPriorityQueue{T}"/> can initially store</param>
36
+
publicMappedBinaryHeapPriorityQueue(intcapacity)
37
37
{
38
38
_heap=newList<T>(capacity);
39
39
40
40
_map=newDictionary<T,List<int>>(capacity);
41
41
}
42
42
43
43
/// <summary>
44
-
/// Initializes a new instance of <see cref="BinaryHeapMappedPriorityQueue{T}"/> class that contains elements copied from the specified collection, sorted by their priority value
44
+
/// Initializes a new instance of <see cref="MappedBinaryHeapPriorityQueue{T}"/> class that contains elements copied from the specified collection, sorted by their priority value
45
45
/// </summary>
46
-
/// <param name="collection">The collection whose elements are copied to the <see cref="BinaryHeapMappedPriorityQueue{T}"/></param>
0 commit comments