-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheck_Bipartite_Graph_using_2-colors.cpp
74 lines (64 loc) · 1.51 KB
/
Check_Bipartite_Graph_using_2-colors.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
#include <bits/stdc++.h>
using namespace std;
class Graph
{
int V;
vector<int> *graph;
public:
bool Bipartite = true;
Graph(int V)
{
this->V = V;
graph = new vector<int>[V];
}
void addEdge(int u, int v)
{
graph[u].push_back(v);
graph[v].push_back(u);
}
void color(int v)
{
// visited or color array
vector<int> color(v, -1);
color[0] = 0;
for (int i = 0; i < v; i++)
{
for (auto x : graph[i])
{
if (color[x] == -1)
{
// if (color[i] == 0) then color[x] = 1 and vice versa.
color[x] = color[i] xor 1;
}
else
{
if (color[x] == color[i])
Bipartite = false;
}
}
}
// printing the color array.
cout << "Color of the vertices : \n";
for (int i = 0; i < v; i++)
cout << i << " --> " << color[i] << endl;
}
};
int main()
{
int V = 5;
Graph g(V);
g.addEdge(0, 1);
g.addEdge(0, 2);
g.addEdge(0, 4);
g.addEdge(1, 3);
g.addEdge(2, 4);
g.addEdge(3, 2);
g.color(V);
// To check for disconnected graphs, use visited array and call
// Bipartitite() on un-visited vertices. (basic DFS)
if (!g.Bipartite)
cout << "Graph is not Bipartite!" << endl;
else
cout << "Graph is Bipartite!" << endl;
return 0;
}