-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfs.c
53 lines (42 loc) · 948 Bytes
/
dfs.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
/*
* Check whether a given graph is connected or not
* using DFS method and determine the time required.
*/
#include <stdio.h>
int a[20][20], reach[20], n;
void dfs(int v)
{
int i;
reach[v] = 1;
for (i = 1; i <= n; i++)
if (a[v][i] && !reach[i])
{
printf("\n%d->%d", v, i);
dfs(i);
}
}
int main()
{
int i, j, count = 0;
printf("\nEnter no of vertices : ");
scanf("%d", &n);
for (i = 1; i <= n; i++)
for (j = 1; j <= n; j++)
{
reach[i] = 0;
a[i][j] = 0;
}
printf("\nEnter adjacency matrix : \n");
for (i = 1; i <= n; i++)
for (j = 1; j <= n; j++)
scanf("%d", &a[i][j]);
dfs(1);
for (i = 1; i <= n; i++)
if (reach[i])
count++;
if (count == n)
printf("\nGraph is connected.");
else
printf("\nGraph is disconnected.");
return 0;
}