aboutsummaryrefslogtreecommitdiff
path: root/sem1/algo/graph/src/main.rs
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2019-10-28 20:55:21 +0100
committerJulian T <julian@jtle.dk>2019-10-28 20:55:21 +0100
commit96b0849a5ff3f510377499a353ae73239416c489 (patch)
tree315ee9891a97f6709c6d0d43455c44438d287edc /sem1/algo/graph/src/main.rs
parent8cbdd712bbef89c2d7996fa9be8b768e6f9fd1a9 (diff)
Added graph structure in rust. Not working very well
Diffstat (limited to 'sem1/algo/graph/src/main.rs')
-rw-r--r--sem1/algo/graph/src/main.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/sem1/algo/graph/src/main.rs b/sem1/algo/graph/src/main.rs
new file mode 100644
index 0000000..4f732e7
--- /dev/null
+++ b/sem1/algo/graph/src/main.rs
@@ -0,0 +1,23 @@
+
+mod graph;
+
+use graph::Graph;
+
+fn main() {
+
+ let mut g = Graph::new();
+
+ g.edge("a", "b", 10);
+ g.edge("a", "c", 10);
+ g.edge("a", "d", 10);
+
+ // Ahh this is hard
+ let v = g.borrow_vertex("a").unwrap();
+ let v23 = v.borrow();
+ let mut it = v23.adj.iter();
+ for e in it {
+ println!("{}", e.borrow());
+ }
+
+ println!("Hello, world!");
+}