-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
78 lines (66 loc) Β· 1.67 KB
/
main.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
#include <stdio.h>
#include "Queue.h"
int n;
int adj[10][10] , visited[10];
// (Breadth First Search)
// TC : O(n^2)
void BFS(int i){
struct Queue q = createQueue(10);
int u;
// Initial step :
printf("%d " , i);
visited[i] = 1;
enqueue(&q , i);
// Explore all it's adjacents
while(!isEmpty(&q)){
u = dequeue(&q);
for(int v = 1 ; v<=n ; v++){
// check there is connection and visited or not
if(adj[u][v]==1 && visited[v] == 0){
printf("%d ",v);
visited[v] =1;
enqueue(&q , v);
}
}
}
}
void DFS(int v){
if(visited[v] == 0){
printf("%d ",v);
visited[v] =1;
// explore all it's adjacents
for(int i = 1; i<=n ; i++){
// if connection and not visited then enter
if(adj[v][i]== 1 && visited[i] == 0){
DFS(i);
}
}
}
}
int main(){
int v;
printf("\nEnter the no of vertices : ");
scanf("%d" , &n);
printf("\nEnter graph : \n");
for(int i=1 ; i<=n ; i++){
for(int j =1 ; j<=n;j++){
printf("Enter connection between %d and %d : " , i , j);
scanf("%d" , &adj[i][j]);
// Eptional
if (i != j) {
adj[j][i] = adj[i][j]; // Ensure undirected symmetry
}
}
}
// Initialize visited array as zero(0)
for(int i = 1 ; i<=n ; i++){
visited[i] = 0;
}
// printf("Enter the starting vertex : ");
// scanf("%d" , &v);
// BFS(v);
printf("Enter the starting vertex : ");
scanf("%d" , &v);
DFS(v);
return 0;
}