-
Notifications
You must be signed in to change notification settings - Fork 1
/
DOUBT_Breadth_first_search.c
93 lines (93 loc) · 1.92 KB
/
DOUBT_Breadth_first_search.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
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node *next;
} *front = NULL, *rear = NULL;
void enqueue(int num)
{
struct node *t;
t = (struct node *)malloc(sizeof(struct node));
if (t == NULL)
{
printf("Queue is full!\n");
}
else
{
(*(t)).data = num;
if (front == NULL)
{
front = rear = t;
(*(t)).next = NULL;
}
else
{
(*(rear)).next = t;
rear = t;
(*(t)).next = NULL;
}
}
}
int dequeue()
{
if (front == rear)
{
printf("Queue is empty.\n");
return (-1);
}
else
{
struct node *t;
t = front;
int x;
x = (*(t)).data;
front = (*(front)).next;
free(t);
return x;
}
}
/*In queue, 'deletion' occurs from 'front end' and 'insertion' occurs from 'rear end'.*/
int isempty()
{
if (front == rear)
{
return 1;
}
else
{
return 0;
}
}
void BFS(int M[][8], int head, int n)
{
int visited[8] = {0};
printf("%d ", head);
visited[head] = 1;
enqueue(head);
while (isempty() != 1)
{
for (int v = 1; v < n; v++)
{
int u = dequeue();
if (M[u][v] == 1 && visited[v] == 0)
{
printf("%d ", v);
visited[v] = 1;
enqueue(v);
}
}
}
}
int main()
{
int M[8][8] = {{0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 1, 1, 1, 0, 0, 0},
{0, 1, 0, 1, 0, 0, 0, 0},
{0, 1, 1, 0, 1, 1, 0, 0},
{0, 1, 0, 1, 0, 1, 0, 0},
{0, 0, 0, 1, 1, 0, 1, 1},
{0, 0, 0, 0, 0, 1, 0, 0},
{0, 0, 0, 0, 0, 1, 0, 0}};
BFS(M, 1, 8);
}