aboutsummaryrefslogtreecommitdiff
path: root/sem3/algo/mm12/graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'sem3/algo/mm12/graph.h')
-rw-r--r--sem3/algo/mm12/graph.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/sem3/algo/mm12/graph.h b/sem3/algo/mm12/graph.h
index e957c4d..f4f2c8f 100644
--- a/sem3/algo/mm12/graph.h
+++ b/sem3/algo/mm12/graph.h
@@ -5,23 +5,23 @@ struct vertex_struct;
// Linked list
typedef struct edge_struct {
- int weight;
- struct vertex_struct *from;
- struct vertex_struct *to;
- // Linked list stuff
- struct edge_struct *next;
- struct edge_struct *prev;
+ int weight;
+ struct vertex_struct *from;
+ struct vertex_struct *to;
+ // Linked list stuff
+ struct edge_struct *next;
+ struct edge_struct *prev;
} edge_t;
typedef struct vertex_struct {
- char ref;
- int dist;
- struct vertex_struct *p;
- edge_t *adj;
+ char ref;
+ int dist;
+ struct vertex_struct *p;
+ edge_t *adj;
} vertex_t;
typedef struct {
- vertex_t *vertexes[128];
+ vertex_t *vertexes[128];
} graph_t;