785 Is Graph Bipartite
Last updated
Last updated
There is an undirected graph with n
nodes, where each node is numbered between 0
and n - 1
. You are given a 2D array graph
, where graph[u]
is an array of nodes that node u
is adjacent to. More formally, for each v
in graph[u]
, there is an undirected edge between node u
and node v
. The graph has the following properties:
There are no self-edges (graph[u]
does not contain u
).
There are no parallel edges (graph[u]
does not contain duplicate values).
If v
is in graph[u]
, then u
is in graph[v]
(the graph is undirected).
The graph may not be connected, meaning there may be two nodes u
and v
such that there is no path between them.
A graph is bipartite if the nodes can be partitioned into two independent sets A
and B
such that every edge in the graph connects a node in set A
and a node in set B
.
Return true
if and only if it is bipartite.
Example 1:
Example 2:
Constraints:
graph.length == n
1 <= n <= 100
0 <= graph[u].length < n
0 <= graph[u][i] <= n - 1
graph[u]
does not contain u
.
All the values of graph[u]
are unique.
If graph[u]
contains v
, then graph[v]
contains u
.
如题,解法,bfs,用两种颜色填图里的点,规则是邻居跟自己要是填不同颜色。如果填着填着发现颜色相同的话,返回false。这题在geeksforgeeks上有oj,不过是用邻接表的。其实填色还能用这个color[nei] = color[node] ^ 1; solution是用stack做的,可以参考参考。其实就是把图里的点和边都过一遍,所以T:O(n + e), S:O(n)