-
Notifications
You must be signed in to change notification settings - Fork 293
/
TarjansStronglyConnected_Tests.cs
118 lines (90 loc) · 3.43 KB
/
TarjansStronglyConnected_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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
using System.Collections.Generic;
using System.Linq;
using Advanced.Algorithms.DataStructures.Graph.AdjacencyList;
using Advanced.Algorithms.Graph;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Advanced.Algorithms.Tests.Graph
{
[TestClass]
public class TarjansStronglyConnectedTests
{
[TestMethod]
public void TarjanStronglyConnected_AdjancencyListGraph_Smoke_Test()
{
var graph = new DiGraph<char>();
graph.AddVertex('A');
graph.AddVertex('B');
graph.AddVertex('C');
graph.AddVertex('D');
graph.AddVertex('E');
graph.AddVertex('F');
graph.AddVertex('G');
graph.AddVertex('H');
graph.AddEdge('A', 'B');
graph.AddEdge('B', 'C');
graph.AddEdge('C', 'A');
graph.AddEdge('C', 'D');
graph.AddEdge('D', 'E');
graph.AddEdge('E', 'F');
graph.AddEdge('F', 'G');
graph.AddEdge('G', 'E');
graph.AddEdge('F', 'H');
var algorithm = new TarjansStronglyConnected<char>();
var result = algorithm.FindStronglyConnectedComponents(graph);
Assert.AreEqual(4, result.Count);
var expectedResult = new List<List<char>>
{
new[] { 'H' }.ToList(),
new[] { 'E', 'F', 'G' }.ToList(),
new[] { 'D' }.ToList(),
new[] { 'A', 'B', 'C' }.ToList()
};
for (var i = 0; i < expectedResult.Count; i++)
{
var expectation = expectedResult[i];
var actual = result[i];
Assert.IsTrue(expectation.Count == actual.Count);
foreach (var vertex in expectation) Assert.IsTrue(actual.Contains(vertex));
}
}
[TestMethod]
public void TarjanStronglyConnected_AdjancencyMatrixGraph_Smoke_Test()
{
var graph = new Algorithms.DataStructures.Graph.AdjacencyMatrix.DiGraph<char>();
graph.AddVertex('A');
graph.AddVertex('B');
graph.AddVertex('C');
graph.AddVertex('D');
graph.AddVertex('E');
graph.AddVertex('F');
graph.AddVertex('G');
graph.AddVertex('H');
graph.AddEdge('A', 'B');
graph.AddEdge('B', 'C');
graph.AddEdge('C', 'A');
graph.AddEdge('C', 'D');
graph.AddEdge('D', 'E');
graph.AddEdge('E', 'F');
graph.AddEdge('F', 'G');
graph.AddEdge('G', 'E');
graph.AddEdge('F', 'H');
var algorithm = new TarjansStronglyConnected<char>();
var result = algorithm.FindStronglyConnectedComponents(graph);
Assert.AreEqual(4, result.Count);
var expectedResult = new List<List<char>>
{
new[] { 'H' }.ToList(),
new[] { 'E', 'F', 'G' }.ToList(),
new[] { 'D' }.ToList(),
new[] { 'A', 'B', 'C' }.ToList()
};
for (var i = 0; i < expectedResult.Count; i++)
{
var expectation = expectedResult[i];
var actual = result[i];
Assert.IsTrue(expectation.Count == actual.Count);
foreach (var vertex in expectation) Assert.IsTrue(actual.Contains(vertex));
}
}
}
}