| 15 | use crate::graph::IGraph; |
| 16 | |
| 17 | pub struct DepthFirstSearch { |
| 18 | marked: Vec<bool>, |
| 19 | count: usize, |
| 20 | } |
| 21 | |
| 22 | impl DepthFirstSearch { |
| 23 | pub fn new(g: &dyn IGraph, s: usize) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected