-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPriorityQueue.cs
80 lines (65 loc) · 2.28 KB
/
PriorityQueue.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
using System;
using System.Collections.Generic;
namespace AStar
{
/// <summary>
/// Priority queue data structure. see https://gist.github.com/ashish01/8593936
/// </summary>
internal class PriorityQueue<T>
{
internal class Node : IComparable<Node>
{
public float Priority;
public T O;
public int CompareTo(Node other) => Priority.CompareTo(other.Priority);
}
private MinHeap<Node> minHeap = new MinHeap<Node>();
public void Add(float priority, T element) => minHeap.Add(new Node() {Priority = priority, O = element});
public T RemoveMin() => minHeap.RemoveMin().O;
public T Peek() => minHeap.Peek().O;
public int Count => minHeap.Count;
class MinHeap<T> where T : IComparable<T>
{
private List<T> array = new List<T>();
public void Add(T element)
{
array.Add(element);
int c = array.Count - 1;
while (c > 0 && array[c].CompareTo(array[c / 2]) == -1)
{
T tmp = array[c];
array[c] = array[c / 2];
array[c / 2] = tmp;
c = c / 2;
}
}
public T RemoveMin()
{
T ret = array[0];
array[0] = array[array.Count - 1];
array.RemoveAt(array.Count - 1);
int c = 0;
while (c < array.Count)
{
int min = c;
if (2 * c + 1 < array.Count && array[2 * c + 1].CompareTo(array[min]) == -1)
min = 2 * c + 1;
if (2 * c + 2 < array.Count && array[2 * c + 2].CompareTo(array[min]) == -1)
min = 2 * c + 2;
if (min == c)
break;
else
{
T tmp = array[c];
array[c] = array[min];
array[min] = tmp;
c = min;
}
}
return ret;
}
public T Peek() => array[0];
public int Count => array.Count;
}
}
}