Last updated
Was this helpful?
Last updated
Was this helpful?
Given an undirected graph
, returntrue
if and only if it is bipartite.
Recall that a graph is_bipartite_if we can split it's set of nodes into two independent subsets A and B such that every edge in the graph has one node in A and another node in B.
The graph is given in the following form:graph[i]
is a list of indexesj
for which the edge between nodesi
andj
exists. Each node is an integer between0
andgraph.length - 1
. There are no self edges or parallel edges:graph[i]
does not containi
, and it doesn't contain any element twice.
Note:
分析
因为有不可达的离散点,所以DFS BFS都要FOR LOOP来检验那些不可达的点。
BFS
DFS