Skip to content

Instantly share code, notes, and snippets.

@tolumide-ng
Last active October 16, 2020 13:05
Show Gist options
  • Save tolumide-ng/3340ee52da11ff5baeda7a0891e23aaf to your computer and use it in GitHub Desktop.
Save tolumide-ng/3340ee52da11ff5baeda7a0891e23aaf to your computer and use it in GitHub Desktop.
mod Graph {
use std::collections::HashMap;
pub struct DAG {
graph: Option<HashMap<u8, Vec<u8>>,
}
impl DAG {
pub fn new(graph_info: Vec<(u8, u8)>) -> Vec<u8> {...}
pub fn get_topological_order(&self)-> Vec<u8> {
...
stack.reverse();
println!("THE STACK!! {:?}", stack);
return stack;
}
pub fn get_order(&self, node: &u8, stack: &mut Vec<u8>) {
let receiving_nodes = self.graph.as_ref().unwrap().get(node);
if receiving_nodes != None {
for value in receiving_nodes.unwrap() {
self.get_order(value, stack);
}
}
if !stack.contains(node) {
stack.push(*node);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment