-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbfs.c
107 lines (98 loc) · 2.77 KB
/
bfs.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
#include <stdlib.h>
#include "bfs.h"
#include "graph.h"
#include "list.h"
#include "queue.h"
int bfs(Graph *graph,BfsVertex *start,List *hops)
{
Queue queue;
AdjList *adjlist,*clr_adjlist;
BfsVertex *clr_vertex,*adj_vertex;
ListElmt *element,*member;
for(element = list_head(&graph_adjlists(graph));element != NULL;element = list_next(element))
{
clr_vertex = ((AdjList *)list_data(element))->vertex;
if(graph->match(clr_vertex,start))
{
clr_vertex->color = gray;
clr_vertex->hops = 0;
}
else
{
clr_vertex->color = white;
clr_vertex->hops = -1;
}
}
queue_init(&queue,NULL);
if(graph_adjlist(graph,start,&clr_adjlist)!=0)
{
queue_destroy(&queue);
return -1;
}
if(queue_enqueue(&queue,clr_adjlist) != 0)
{
queue_destroy(&queue);
return -1;
}
/*perform breath-first search*/
while(queue_size(&queue) > 0)
{
adjlist = queue_peek(&queue);
for(member = list_head(&adjlist->adjacent);member != NULL;member = list_next(member))
{
adj_vertex = list_data(member);
if(graph_adjlist(graph,adj_vertex,&clr_adjlist)!=0)
{
queue_destroy(&queue);
return -1;
}
clr_vertex = clr_adjlist->vertex;
if(clr_vertex->color == white)
{
clr_vertex->color = gray;
clr_vertex->hops = ((BfsVertex *)adjlist->vertex)->hops + 1;
if(queue_enqueue(&queue,clr_adjlist)!=0)
{
queue_destroy(&queue);
return -1;
}
}
}
if(queue_dequeue(&queue,(void **)&adjlist)==0)
{
((BfsVertex *)adjlist->vertex)->color = black;
}
else
{
queue_destroy(&queue);
return -1;
}
}
queue_destroy(&queue);
list_init(hops,NULL);
for(element = list_head(&graph_adjlists(graph));element != NULL;element = list_next(element))
{
clr_vertex = ((AdjList *)list_data(element))->vertex;
if(clr_vertex->hops!= -1)
{
if(list_ins_next(hops,list_tail(hops),clr_vertex)!=0)
{
list_destroy(hops);
return -1;
}
}
}
return 0;
}
void bfs_int(BfsVertex *bfsVertex,void *data)
{
BfsVertex bfs;
*bfsVertex = bfs;
bfsVertex->data = data;
return;
}
int match_int(BfsVertex *key1,BfsVertex *key2)
{
if(*(int *)(key1->data) == *(int *)(key2->data)) return 1;
return 0;
}