-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPriorityQueue.cs
75 lines (61 loc) · 1.56 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PathAlgorithms
{
class PriorityQueue
{
public List<int> list;
public int Count { get { return list.Count; } }
public PriorityQueue()
{
list = new List<int>();
}
public PriorityQueue(int count)
{
list = new List<int>(count);
}
public void Enqueue(int x)
{
list.Add(x);
int i = Count - 1;
while (i > 0)
{
int p = (i - 1) / 2;
if (list[p] <= x) break;
list[i] = list[p];
i = p;
}
if (Count > 0) list[i] = x;
}
public int Dequeue()
{
int min = Peek();
int root = list[Count - 1];
list.RemoveAt(Count - 1);
int i = 0;
while (i * 2 + 1 < Count)
{
int a = i * 2 + 1;
int b = i * 2 + 2;
int c = b < Count && list[b] < list[a] ? b : a;
if (list[c] >= root) break;
list[i] = list[c];
i = c;
}
if (Count > 0) list[i] = root;
return min;
}
public int Peek()
{
if (Count == 0) throw new InvalidOperationException("Queue is empty.");
return list[0];
}
public void Clear()
{
list.Clear();
}
}
}