-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraph.c
239 lines (229 loc) · 5.14 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#define INFINITY MAX_VAL
#define MAX_VEX 30
typedef int InfoType;
typedef int VexType;
typedef int ArcValType;
typedef int ArcInfoType;
typedef enum{
DG, AG, WDG, WAG
}GraphKind;// different kinds of Graph
//邻接表
typedef struct LinkNode
{
int adjvex;
InfoType info;
struct LinkNode *nextarc;
}LinkNode;
typedef struct VexNode
{
VexType data;
int degree;
LinkNode *firstarc;
}VexNode;
typedef struct ArcType
{
VexType vex1, vex2;
InfoType info;
}ArcType;
typedef struct
{
GraphKind kind;
int vexnum;
VexNode AdjList[MAX_VEX];
}ALGraph;
//结点定位
int LocateVex(ALGraph *G, VexType *vp){
int k;
for (k = 0; k < G->vexnum; k++)
if (G->AdjList[k].data == *vp) return k;
return -1;
}
//添加节点
int AddVertex(ALGraph *G, VexType *vp){
int k, j;
if (G->vexnum >= MAX_VEX)
{
printf("Vertex Overflow!\n");
return -1;
}
if (LocateVex(G, vp) != -1)
{
printf("Vertex has existed!\n");
return -1;
}
G->AdjList[G->vexnum].data = *vp;
G->AdjList[G->vexnum].degree = 0;
G->AdjList[G->vexnum].firstarc = NULL;
k = ++G->vexnum;
return k;
}
//添加弧
int AddArc(ALGraph *G, ArcType *arc){
int k, j;
LinkNode *p, *q;
k = LocateVex(G, &arc->vex1);
j = LocateVex(G, &arc->vex2);
if (k == -1 || j == -1)
{
printf("Arc's Vertex do not existed!\n");
return -1;
}
p = (LinkNode*)malloc(sizeof(LinkNode));
p->adjvex = arc->vex1;
p->info = arc->info;
p->nextarc = NULL;
if (G->kind == AG || G->kind == WAG)
{
q->nextarc = G->AdjList[k].firstarc;
G->AdjList[k].firstarc = q;
q->nextarc = G->AdjList[j].firstarc;
G->AdjList[j].firstarc = p;
}else
{
q->nextarc = G->AdjList[k].firstarc;
G->AdjList[k].firstarc = q;
}
return 1;
}
//邻接矩阵
typedef struct AdjType
{
ArcValType ArcVal;
ArcInfoType ArcInfo;
}AdjType;
typedef struct ArcType
{
VexType vex1,vex2;
ArcValType ArcVal;
ArcInfoType ArcInfo;
}ArcType;
typedef struct
{
GraphKind kind;
int vexnum, arcnum;
VexType vexs[MAX_VEX];
AdjType adj[MAX_VEX][MAX_VEX];
}MGraph;
int LocateVex(MGraph *G, VexType *vp){
int k;
for ( k = 0; k < G->vexnum; k++)
{
if (G->vexs[k] == *vp)
{
return k;
}
}
return -1;
}
int AddVertex(MGraph *G, VexType *vp){
int k, j;
if (G->vexnum >= MAX_VEX)
{
printf("Vextex Overflow!\n");
return -1;
}
if(LocateVex(G, vp) != -1){
printf("Vertex has existed!\n");
return -1;
}
k = G->vexnum;
G->vexs[G->vexnum++] = *vp;
if(G->kind == DG || G->kind == AG){
for ( j = 0; j < G->vexnum; j++)
{
G->adj[j][k].ArcVal = G->adj[k][j].ArcVal = 0;
}else{
for ( j = 0; j < G->vexnum; j++)
{
G->adj[j][k] = INFINITY;
G->adj[k][j] = INFINITY;
}
}
}
return k;
}
//邻接表深度优先
typedef enum{FALSE, TRUE} BOOLEAN;
BOOLEAN visited[MAX_VEX];
void DFS(ALGraph *G, int v){
LinkNode *p;
visited[v] = TRUE;
Visit[v];//访问函数,可以为打印输出值
p = G->AdjList[v].firstarc;
while (p != NULL)
{
if (!visited[p->adjvex])
{
DFS(G, p->adjvex);
}
p = p->nextarc;
}
}
void DFS_traverse_Graph(ALGraph *G){
int v;
for ( v = 0; v < G->vexnum; v++)
{
visited[v] = FALSE;
}
for ( v = 0; v < G->vexnum; v++)
{
if (!visited[v])
{
DFS(G, v);
}
}
}
//邻接表广度优先
typedef struct Queue
{
int elem[MAX_VEX];
int front, rear;
}Queue;
void BFS_traverse_Graph(ALGraph *G){
int k, v, w;
LinkNode *p;
Queue *Q;
Q = (Queue*)malloc(sizeof(Queue));
Q->front = Q->rear = 0;
for ( k = 0; k < G->vexnum; k++)
{
visited[k] = FALSE;
}
for ( k = 0; k < G->vexnum; k++)
{
v = G->AdjList[k].data;
if (!visited[v])
{
Visit[v];
visited[v] = TRUE;
Q->elem[++Q->rear] = v;
while (Q->front != Q->rear)
{
w = Q->front != Q->rear;
p = G->AdjList[w].firstarc;
while (p != NULL)
{
if (! visited[p->adjvex])
{
Visit[p->adjvex];
visited[p->adjvex] = TRUE;
Q->elem[++Q->rear] = p->adjvex;
p = p->nextarc;
}
}
}
}
}
}
//一种简单的图的定义
typedef struct
{
int num;//顶点编号
InfoType info;//顶点其他信息
}VertexType;
typedef struct
{
int edges[MAX_VEX][MAX_VEX];
int n, e;//顶点数,边数
VertexType vexs[MAX_VEX];
}MGraph;