Skip to content

Instantly share code, notes, and snippets.

@tolumide-ng
Last active October 16, 2020 13:04
Show Gist options
  • Save tolumide-ng/6355082deb94132d72df850161b37747 to your computer and use it in GitHub Desktop.
Save tolumide-ng/6355082deb94132d72df850161b37747 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> {
let mut adjacency_map: HashMap<u8, Vec<u8>> = HashMap::new();
for value in graph_info {
let source_vertex = &mut adjacency_list.entry(value.0).or_insert(vec![]);
source_vertex.push(value.1);
}
let the_graph = DAG {
graph: Some(adjacency_map),
};
return the_graph.get_topological_order();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment