Last active
October 16, 2020 13:04
-
-
Save tolumide-ng/6355082deb94132d72df850161b37747 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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