forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStoerWagnerTest.java
More file actions
64 lines (54 loc) · 2.03 KB
/
StoerWagnerTest.java
File metadata and controls
64 lines (54 loc) · 2.03 KB
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
package com.thealgorithms.graph;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
/**
* Unit tests for the StoerWagner global minimum cut algorithm.
*
* These tests verify correctness of the implementation across
* several graph configurations: simple, complete, disconnected,
* and small edge cases.
*/
public class StoerWagnerTest {
@Test
public void testSimpleGraph() {
int[][] graph = {{0, 3, 2, 0}, {3, 0, 1, 4}, {2, 1, 0, 5}, {0, 4, 5, 0}};
StoerWagner algo = new StoerWagner();
assertEquals(5, algo.findMinCut(graph)); // Correct minimum cut = 5
}
@Test
public void testTriangleGraph() {
int[][] graph = {{0, 2, 3}, {2, 0, 4}, {3, 4, 0}};
StoerWagner algo = new StoerWagner();
assertEquals(5, algo.findMinCut(graph)); // min cut = 5
}
@Test
public void testDisconnectedGraph() {
int[][] graph = {{0, 0, 0}, {0, 0, 0}, {0, 0, 0}};
StoerWagner algo = new StoerWagner();
assertEquals(0, algo.findMinCut(graph)); // Disconnected graph => cut = 0
}
@Test
public void testCompleteGraph() {
int[][] graph = {{0, 1, 1, 1}, {1, 0, 1, 1}, {1, 1, 0, 1}, {1, 1, 1, 0}};
StoerWagner algo = new StoerWagner();
assertEquals(3, algo.findMinCut(graph)); // Each vertex connected to all others
}
@Test
public void testSingleVertex() {
int[][] graph = {{0}};
StoerWagner algo = new StoerWagner();
assertEquals(0, algo.findMinCut(graph)); // Only one vertex
}
@Test
public void testTwoVertices() {
int[][] graph = {{0, 7}, {7, 0}};
StoerWagner algo = new StoerWagner();
assertEquals(7, algo.findMinCut(graph)); // Only one edge, cut weight = 7
}
@Test
public void testSquareGraphWithDiagonal() {
int[][] graph = {{0, 2, 0, 2}, {2, 0, 3, 0}, {0, 3, 0, 4}, {2, 0, 4, 0}};
StoerWagner algo = new StoerWagner();
assertEquals(4, algo.findMinCut(graph)); // verified manually
}
}