-
Notifications
You must be signed in to change notification settings - Fork 0
/
bfsjuly.cpp
140 lines (90 loc) · 1.84 KB
/
bfsjuly.cpp
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include<bits/stdc++.h>
using namespace std;
int q[20],v[20],rear=-1,front=-1;
void insert(int no)
{
if(front==-1)
{
rear++;
front++;
q[front]=no;
cout<<"the no inserted at "<<"Q["<<front<<"]="<<q[front]<<"\n";
}
else
{
q[rear++]=no;
cout<<"the no inserted at "<<"Q["<<rear<<"]="<<q[rear]<<"\n";
}
}
int del()
{
if(front==rear)
{ int temp=q[front];
cout<<"the no deleted at "<<"Q["<<front<<"]="<<q[front];
front=-1;
rear=-1;
return temp;
}
else
{
cout<<"the no deleted at "<<"Q["<<front<<"]="<<q[front];
return q[front++];
}
}
int bfst(int A[20][20],int n)
{
int u=del();
//printf("u=%d",u);
int i ;
for(i=0;i<n;i++)
{ cout<<"A["<<u<<"]["<<i<<"]"<<A[u][i]<<" v["<<i<<"]"<<v[i];
if(A[u][i]==1&&v[i]==0)
{
v[i]=1;
insert(i);
}
}
return u ;
}
void bfs(int A[20][20],int sv,int n )
{
v[sv]=1;
insert(sv);
int x=bfst(A,n);
int s[n];
int k=0;
s[k]=x;
while(front!=-1)
{
x=bfst(A,n);
s[++k]=x;
}
if(k!=n-1)
{
cout<<"GRAPH NOT CONNECTED";
}
else{
for(int i=0;i<n;i++)
{
//cout<<s[i];
}
}
}
int main(){
int n;
int A[20][20];
cin>>n;
for(int i=0;i<20;i++)
{
v[i]=0;
}
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
cin>>A[i][j];
}
}
bfs(A,0,n);
return 0 ;
}