MCPcopy Create free account
hub / github.com/douchuan/algorithm / NonRecursiveDFS

Class NonRecursiveDFS

src/graph/undirected/dfs2.rs:11–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9use crate::graph::IGraph;
10
11pub struct NonRecursiveDFS {
12 marked: Vec<bool>,
13}
14
15impl NonRecursiveDFS {
16 pub fn new(graph: &dyn IGraph, s: usize) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected