-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfs.c
102 lines (99 loc) · 1.79 KB
/
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
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
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node *next;
}*front=NULL,*rear =NULL;
void enqueue(int n)
{
struct node*t;
t=(struct node*)malloc(sizeof(struct node));
if(t==NULL)
printf("The queue is full\n");
else
{
t->data=n;
t->next=NULL;
if(front=NULL)
front=rear=t;
else
{
rear=rear->next;
rear=t;
}
}
}
int dequeue()
{
int x=-1;
struct node*t;
if(front==NULL)
{
printf("Queue is empty\n");
return x;
}
else
{
x=front->data;
t=front;
front=front->next;
free(t);
}
return x;
}
int isEmpty()
{
return front==NULL;
}
void bfs(int g[][7],int start,int n)
{
int i=start,j;
int visited[7]={0};
printf("%d",i);
visited[i]=1;
enqueue(i);
while(!isEmpty())
{
i=dequeue();
for( j=1;j<n;j++)
{
if(g[i][j]==1&&visited[j]==0)
{
printf("%d",j);
visited[j]=1;
enqueue(j);
}
}
}
}
void dfs(int g[][7],int start,int n)
{
int i=start;
static int visited[7]={0};
if(visited[i]==0)
{
printf("%d",i);
visited[i]=1;
}
for(int v=1;v<n;v++)
{
if(g[i][v]==1&&visited[v]==0)
{
dfs(g,v,n);
}
}
}
int main()
{
int g[7][7]={{0,0,0,0,0,0,0},
{0,0,1,1,0,0,0},
{0,1,0,0,1,0,0},
{0,1,0,0,1,0,0},
{0,0,1,1,0,1,1},
{0,0,0,0,1,0,0},
{0,0,0,0,1,0,0}};
//dfs(g,4,7);
bfs(g,4,7);
return 0;
}