forked from SkienaBooks/Algorithm-Design-Manual-Programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.c
137 lines (104 loc) · 2.95 KB
/
graph.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* graph.c
A generic adjacency list graph data type.
by: Steven Skiena
begun: March 6, 2002
*/
/*
Copyright 2003 by Steven S. Skiena; all rights reserved.
Permission is granted for use in non-commerical applications
provided this copyright notice remains intact and unchanged.
This program appears in my book:
"Programming Challenges: The Programming Contest Training Manual"
by Steven Skiena and Miguel Revilla, Springer-Verlag, New York 2003.
See our website www.programming-challenges.com for additional information.
This book can be ordered from Amazon.com at
http://www.amazon.com/exec/obidos/ASIN/0387001638/thealgorithmrepo/
*/
#include <stdio.h>
#include <stdlib.h>
#include "queue.h"
#include "graph.h"
/* [[[ init_graph_c */
void initialize_graph(graph *g, bool directed) {
int i; /* counter */
g->nvertices = 0;
g->nedges = 0;
g->directed = directed;
for (i = 1; i <= MAXV; i++) {
g->degree[i] = 0;
}
for (i = 1; i <= MAXV; i++) {
g->edges[i] = _NULL;
}
}
/* ]]] */
/* [[[ insert_edge_cut */
void insert_edge(graph *g, int x, int y, bool directed) {
edgenode *p; /* temporary pointer */
p = malloc(sizeof(edgenode)); /* allocate storage for edgenode */
p->weight = _NULL;
p->y = y;
p->next = g->edges[x];
g->edges[x] = p; /* insert at head of list */
g->degree[x]++;
if (directed == FALSE) {
insert_edge(g, y, x, TRUE);
} else {
g->nedges++;
}
}
/* ]]] */
/* [[[ read_graph_cut */
void read_graph(graph *g, bool directed) {
int i; /* counter */
int m; /* number of edges */
int x, y; /* vertices in edge (x,y) */
initialize_graph(g, directed);
scanf("%d %d", &(g->nvertices), &m);
for (i = 1; i <= m; i++) {
scanf("%d %d", &x, &y);
insert_edge(g, x, y, directed);
}
}
/* ]]] */
void delete_edge(graph *g, int x, int y, bool directed) {
int i; /* counter */
edgenode *p, *p_back; /* temporary pointers */
p = g->edges[x];
p_back = _NULL;
while (p != _NULL) {
if (p->y == y) {
g->degree[x]--;
if (p_back != _NULL) {
p_back->next = p->next;
} else {
g->edges[x] = p->next;
}
free(p);
if (directed == FALSE) {
delete_edge(g, y, x, TRUE);
} else {
g->nedges--;
}
return;
} else {
p = p->next;
}
}
printf("Warning: deletion(%d,%d) not found in g.\n",x,y);
}
/* [[[ print_graph_cut */
void print_graph(graph *g) {
int i; /* counter */
edgenode *p; /* temporary pointer */
for (i = 1; i <= g->nvertices; i++) {
printf("%d: ", i);
p = g->edges[i];
while (p != _NULL) {
printf(" %d", p->y);
p = p->next;
}
printf("\n");
}
}
/* ]]] */