Lets say I have a graph G with its adjacency matrix A. I know that G is bipartite. How can I split the vertices in G into the two sets that always form a bipartite graph? Thanks!
|
feedback
|
|
Declare an array Intuitively, you can imagine that each traversal from parent to child in the DFS takes you "down" a level, and each traversal back takes you back "up". By the bipartite property, all vertices on even levels can be connected only to vertices on odd levels and vice versa, so labelling nodes "even" or "odd" suffices to partition them into the two sets. If your graph contains more than one component, you will of course need a separate DFS for each component. | |||||
|
feedback
|