We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bdf61a commit c029506Copy full SHA for c029506
src/com/jwetherell/algorithms/graph/CycleDetection.java
@@ -6,6 +6,11 @@
6
7
import com.jwetherell.algorithms.data_structures.Graph;
8
9
+/**
10
+ * Cycle detection in an undirected graph using depth first search.
11
+ *
12
+ * @author Justin Wetherell <phishman3579@gmail.com>
13
+ */
14
public class CycleDetection {
15
16
private static Set<Graph.Vertex<Integer>> visitedVerticies = new HashSet<Graph.Vertex<Integer>>();
0 commit comments