aboutsummaryrefslogtreecommitdiff
path: root/sem1/algo/graph/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'sem1/algo/graph/src/main.rs')
-rw-r--r--sem1/algo/graph/src/main.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/sem1/algo/graph/src/main.rs b/sem1/algo/graph/src/main.rs
deleted file mode 100644
index 4f732e7..0000000
--- a/sem1/algo/graph/src/main.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-
-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!");
-}