-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCheckIfBipartite.java
110 lines (95 loc) · 3.69 KB
/
CheckIfBipartite.java
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
/*https://practice.geeksforgeeks.org/problems/bipartite-graph/1*/
/*https://leetcode.com/problems/is-graph-bipartite/*/
class Solution
{
public boolean isBipartite(int v, ArrayList<ArrayList<Integer>>adj)
{
//create a queue and two sets
Queue<Integer> queue = new LinkedList<Integer>();
HashSet<Integer> first = new HashSet<Integer>();
HashSet<Integer> second = new HashSet<Integer>();
boolean[] visited = new boolean[v];
//for every vertex
for (int i = 0; i < v; ++i)
{
//if the vertex is not yet visited
if (!visited[i])
{
//add it to the first set and queue, mark it as visited
first.add(i);
visited[i] = true;
queue.add(i);
//till the queue becomes empty
while (!queue.isEmpty())
{
//remove front
int curr = queue.remove();
//get the adjacent nodes
ArrayList<Integer> adjacentNodes = adj.get(curr);
//for every adjacent node
for (Integer adjacentNode : adjacentNodes)
{
//if first set contains the current node
if (first.contains(curr))
{
//and first set also contains the adjacent node
if (first.contains(adjacentNode))
return false; //graph is not bipartite
//add the adjacent node to the second set
second.add(adjacentNode);
//mark as visited and add to queue
if (!visited[adjacentNode])
{
visited[adjacentNode] = true;
queue.add(adjacentNode);
}
}
//if the second set contains the current node
else if (second.contains(curr))
{
//and second set also contains the adjacent node
if (second.contains(adjacentNode))
return false; //graph is not bipartite
//add the adjacent node to the first set
first.add(adjacentNode);
//mark as visited and add to queue
if (!visited[adjacentNode])
{
visited[adjacentNode] = true;
queue.add(adjacentNode);
}
}
}
}
}
}
//if loop uninterrupted, graph is bipartite
return true;
}
}
class Solution {
public boolean isBipartite(int[][] graph) {
int N = graph.length, i;
int[] color = new int[N];
for (i = 0; i < N; ++i) color[i] = -1;
for (i = 0; i < N; ++i)
if (color[i] == -1)
if (!DFS(graph,color,i))
return false;
return true;
}
boolean DFS (int[][] graph, int[] color, int node)
{
if (color[node] == -1) color[node] = 1;
for (int a: graph[node])
{
if (color[a] == -1)
{
color[a] = 1-color[node];
if (!DFS(graph,color,a)) return false;
}
else if(color[a] == color[node]) return false;
}
return true;
}
}