2018-10-19 12:48:28 +00:00
|
|
|
# Check whether Graph is Bipartite or Not using BFS
|
|
|
|
|
2020-05-22 06:10:11 +00:00
|
|
|
|
2018-10-19 12:48:28 +00:00
|
|
|
# A Bipartite Graph is a graph whose vertices can be divided into two independent sets,
|
|
|
|
# U and V such that every edge (u, v) either connects a vertex from U to V or a vertex
|
|
|
|
# from V to U. In other words, for every edge (u, v), either u belongs to U and v to V,
|
|
|
|
# or u belongs to V and v to U. We can also say that there is no edge that connects
|
|
|
|
# vertices of same set.
|
2021-10-30 11:06:25 +00:00
|
|
|
from queue import Queue
|
|
|
|
|
|
|
|
|
2022-10-12 22:54:20 +00:00
|
|
|
def check_bipartite(graph):
|
2021-10-30 11:06:25 +00:00
|
|
|
queue = Queue()
|
2020-05-22 06:10:11 +00:00
|
|
|
visited = [False] * len(graph)
|
|
|
|
color = [-1] * len(graph)
|
2018-10-19 12:48:28 +00:00
|
|
|
|
|
|
|
def bfs():
|
2021-10-30 11:06:25 +00:00
|
|
|
while not queue.empty():
|
|
|
|
u = queue.get()
|
2018-10-19 12:48:28 +00:00
|
|
|
visited[u] = True
|
|
|
|
|
2020-05-22 06:10:11 +00:00
|
|
|
for neighbour in graph[u]:
|
2018-10-19 12:48:28 +00:00
|
|
|
if neighbour == u:
|
|
|
|
return False
|
|
|
|
|
|
|
|
if color[neighbour] == -1:
|
|
|
|
color[neighbour] = 1 - color[u]
|
2021-10-30 11:06:25 +00:00
|
|
|
queue.put(neighbour)
|
2018-10-19 12:48:28 +00:00
|
|
|
|
|
|
|
elif color[neighbour] == color[u]:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2020-05-22 06:10:11 +00:00
|
|
|
for i in range(len(graph)):
|
2018-10-19 12:48:28 +00:00
|
|
|
if not visited[i]:
|
2021-10-30 11:06:25 +00:00
|
|
|
queue.put(i)
|
2018-10-19 12:48:28 +00:00
|
|
|
color[i] = 0
|
2020-05-22 06:10:11 +00:00
|
|
|
if bfs() is False:
|
2018-10-19 12:48:28 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2020-05-22 06:10:11 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
# Adjacency List of graph
|
2022-10-12 22:54:20 +00:00
|
|
|
print(check_bipartite({0: [1, 3], 1: [0, 2], 2: [1, 3], 3: [0, 2]}))
|