-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfundamental-r.cpp
146 lines (135 loc) · 2.03 KB
/
fundamental-r.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
141
142
143
144
145
146
#include <iostream>
#include <vector>
#include <queue>
#include <stack>
using namespace std;
vector <int> gra[10];
int nodes,edge;
bool graph[10][10] = {false};
// adjancency matrix
void dfsi(int i)
{
vector< bool> v(nodes,false);
stack <int> s;
s.push(i);
while(!s.empty() )
{
i= s.top();
s.pop();
if(!v[i])
{
cout<<i<<" "<<"\n";
v[i]=true;
}
for( vector <int> :: iterator it = gra[i].begin();it!=gra[i].end();++it)
{
if(!v[ * it])
{
s.push(*it);
}
}
}
}
bool v[100]={};
// vector <bool> v(nodes,false);
void dfsr(int i)
{
if(v[i]==true)
{
return;
}
cout<<i<<" "<<"\n";
v[i]=true;
for(int j = 0;j<gra[i].size();j++)
{
if(v[gra[i][j]]==false)
{
dfsr(gra[i][j]);
}
}
}
bool connected(int i)
{
dfsr(i);
for(int i=1;i<nodes;i++)
{
if( v[i] == false)
{
return false;
}
}
return true;
}
bool v1[100]={};
void bfs(int i)
{
queue<int> q;
q.push(i);
while(!q.empty())
{
int s = q.front();
q.pop();
if(!v1[s])
{
cout<<s<<" ";
v1[s]=true;
}
for(vector<int> :: iterator it = gra[s].begin();it!=gra[s].end();++it)
{
if(v1 [ *it]==false)
{
q.push(*it);
}
}
}
}
int main()
{
// cin>>nodes;
// cin>>edge;
// for(int i=0;i<edge;i++)
// {
// int e1,e2;
// cin>>e1>>e2;
// graph[e1][e2]=true;
// }
// for(int i=0;i<nodes;i++)
// {
// for(int j=0;j<nodes;j++)
// {
// if(graph[i][j])
// {
// cout<<"Edge between "<<i<<" "<<j;
// cout<<"\n";
// }
// }
// }
// adjancency list
cin>>nodes>>edge;
// cout<<nodes<<" "<<edge;
for(int i=0;i<edge;i++)
{
int e1,e2;
cin>>e1>>e2;
gra[e1].push_back(e2);
// cout<<e1<<" "<<e2;
}
for(int i=1;i<=nodes;i++)
{
cout<<i<<" ";
for(int j=0;j<gra[i].size();j++)
{
cout<<gra[i][j]<<" ";
}
cout<<"\n";
}
//traversal in a graph DFS me and pehle meri depth and than backtrack
int node1;
cin>>node1;
//dfsi(node1);
dfsr(node1);
bool status =connected( node1);
cout<<boolalpha<<status;
cout<<"\n";
bfs(node1);
}