Skip to main content

dfs_with_callback

Function dfs_with_callback 

Source
pub fn dfs_with_callback<F>(
    graph: &[Vec<usize>],
    start: usize,
    visited: &mut [bool],
    callback: &mut F,
)
where F: FnMut(usize),