Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
9
use crate::graph::IGraph;
10
11
pub struct NonRecursiveDFS {
12
marked: Vec<bool>,
13
}
14
15
impl 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