-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbipartite graph.cpp
72 lines (55 loc) · 1.43 KB
/
bipartite graph.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
#include <iostream>
#include<list>
#include<queue>
using namespace std;
class Graph{
int V;
list<int> *l;
public:
Graph(int v){
V = v;
l = new list<int>[V];
}
void addEdge(int u,int v){
l[u].push_back(v);
l[v].push_back(u);
}
bool isBipartite(int s){
queue<int> q;
q.push(s);
int *colors = new int[V];
for(int i=0;i<V;i++){
colors[i] = -1; //Not Visited
}
colors[s] = 0;
bool ans = true;
while(!q.empty() && ans){
int u = q.front();
q.pop();
for(auto v:l[u]){
if(colors[v]==-1){
colors[v] = 1 - colors[u];
q.push(v);
}
else if(colors[v]==colors[u]){
return false;
}
}
}
return true;
}
};
int main() {
Graph g(4);
g.addEdge(0,1);
g.addEdge(2,0);
g.addEdge(1,3);
g.addEdge(2,3);
g.addEdge(0,3);
if(g.isBipartite(0)){
cout<<"Yes it is";
}
else{
cout<<"No it is not";
}
}