-
Notifications
You must be signed in to change notification settings - Fork 293
/
BellmanFord_Tests.cs
97 lines (72 loc) · 2.9 KB
/
BellmanFord_Tests.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
using Advanced.Algorithms.DataStructures.Graph.AdjacencyList;
using Advanced.Algorithms.Graph;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Advanced.Algorithms.Tests.Graph
{
[TestClass]
public class BellmanFordTests
{
[TestMethod]
public void BellmanFord_AdjacencyList_Smoke_Test()
{
var graph = new WeightedDiGraph<char, int>();
graph.AddVertex('S');
graph.AddVertex('A');
graph.AddVertex('B');
graph.AddVertex('C');
graph.AddVertex('D');
graph.AddVertex('T');
graph.AddEdge('S', 'A', -10);
graph.AddEdge('S', 'C', -5);
graph.AddEdge('A', 'B', 4);
graph.AddEdge('A', 'C', 2);
graph.AddEdge('A', 'D', 8);
graph.AddEdge('B', 'T', 10);
graph.AddEdge('C', 'D', 9);
graph.AddEdge('D', 'B', 6);
graph.AddEdge('D', 'T', 10);
var algorithm = new BellmanFordShortestPath<char, int>(new BellmanFordShortestPathOperators());
var result = algorithm.FindShortestPath(graph, 'S', 'T');
Assert.AreEqual(4, result.Length);
var expectedPath = new[] { 'S', 'A', 'B', 'T' };
for (var i = 0; i < expectedPath.Length; i++) Assert.AreEqual(expectedPath[i], result.Path[i]);
}
[TestMethod]
public void BellmanFord_AdjacencyMatrix_Smoke_Test()
{
var graph = new Algorithms.DataStructures.Graph.AdjacencyMatrix.WeightedDiGraph<char, int>();
graph.AddVertex('S');
graph.AddVertex('A');
graph.AddVertex('B');
graph.AddVertex('C');
graph.AddVertex('D');
graph.AddVertex('T');
graph.AddEdge('S', 'A', -10);
graph.AddEdge('S', 'C', -5);
graph.AddEdge('A', 'B', 4);
graph.AddEdge('A', 'C', 2);
graph.AddEdge('A', 'D', 8);
graph.AddEdge('B', 'T', 10);
graph.AddEdge('C', 'D', 9);
graph.AddEdge('D', 'B', 6);
graph.AddEdge('D', 'T', 10);
var algorithm = new BellmanFordShortestPath<char, int>(new BellmanFordShortestPathOperators());
var result = algorithm.FindShortestPath(graph, 'S', 'T');
Assert.AreEqual(4, result.Length);
var expectedPath = new[] { 'S', 'A', 'B', 'T' };
for (var i = 0; i < expectedPath.Length; i++) Assert.AreEqual(expectedPath[i], result.Path[i]);
}
/// <summary>
/// generic operations for int type
/// </summary>
public class BellmanFordShortestPathOperators : IShortestPathOperators<int>
{
public int DefaultValue => 0;
public int MaxValue => int.MaxValue;
public int Sum(int a, int b)
{
return checked(a + b);
}
}
}
}