-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLAB Q-13.cpp
More file actions
44 lines (41 loc) · 738 Bytes
/
Copy pathLAB Q-13.cpp
File metadata and controls
44 lines (41 loc) · 738 Bytes
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
#include<iostream>
#include<stdlib.h>
using namespace std;
int a[10][10],i,j,k,n,qu[10],front,rare,v,visit[10],visited[10],x,y;
int main()
{
cout <<"enter no of vertices SIR/MAM!";
cin >> n;
cout<<"sir please enter for undirected grah"<<endl;
cin>>x>>y;
if(x>=n&&y>=n)
cout<<"sir ji please enter within range"<<endl;
else
{
while(x!=-1&&y!=-1)
{
a[x][y]=1;
a[y][x]=1;
cin>>x>>y;
}
}
cout <<"enter initial vertex";
cin >>v;
cout <<"Visitied vertices\n";
cout << v<<" ";
visited[v]=1;
k=1;
while(k<n)
{
for(j=1;j<=n;j++)
if(a[v][j]!=0 && visited[j]!=1 && visit[j]!=1)
{
visit[j]=1;
qu[rare++]=j;
}
v=qu[front++];
cout<<v << " ";
k++;
visit[v]=0; visited[v]=1;
}
}