diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-12-10 16:51:50 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-12-10 16:51:50 +0100 |
commit | 9f43600ea65189e7fae39f9ed3e592cbb19de11f (patch) | |
tree | 5621ba085537f97c684a641e08b6d22ee99dea24 | |
parent | 3a1b146a5761db20d243ae5224a962eeca19b506 (diff) | |
download | AlgoProg-Projet-master.tar.gz AlgoProg-Projet-master.zip |
-rw-r--r-- | graph.c | 3 | ||||
-rw-r--r-- | set_linked_lists.c | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -43,7 +43,8 @@ graph load_graph_dimacs(FILE *stream) { fprintf(stderr, "File format error (expected 'p' declaration)\n"); return NULL; } - fscanf(stream, " col %d %d\n", &n, &m); // read node count + fscanf(stream, " col"); fscanf(stream, " edge"); // either col or edge + fscanf(stream, " %d %d\n", &n, &m); // read node count fprintf(stderr, "Load DIMACS: n = %d, m = %d\n", n, m); graph k = malloc(sizeof(struct graph_descriptor)); diff --git a/set_linked_lists.c b/set_linked_lists.c index 004e55a..46d0c8d 100644 --- a/set_linked_lists.c +++ b/set_linked_lists.c @@ -68,6 +68,7 @@ set full_set(int n) { for (i = 0; i < n; i++) { element e = malloc(sizeof(struct set_elt)); e->value = i; + e->next = NULL; if (prev == NULL) { k->first = e; } else { |