vote up 2 vote down star

For instance, suppose I have a graph G = (V, E) where

V = {A, B, C, D}
E = {(A, B), (A,D), (C, D)}

This graph is bipartite, and thus can be split into two disjoint sets {A, C} and {B, D}. My first guess is that I can simply walk the graph and assign alternating colors to each vertex. Is this the case, or is it more complicated/simpler than this? Are there any known algorithms for this?

flag

5 Answers

vote up 3 vote down check

Your first guess is correct - traverse the graph and alternate.

The algorithm should be simple. I'd keep two queues of nodes to visit, one for each colour. Pop nodes off the queues alternately, mark its colour, and push any non-visited adjacent nodes into the queue for the opposite colour. Terminate when the number of visited nodes + the length of both queues = number of nodes in the graph.

link|flag
1  
Or simply write a recursive DFS function, passing a color argument. – Mehrdad Afshari Oct 31 at 18:33
1  
Most graphs large enough to be interesting cause an SO on recursive DFS. – Pete Kirkham Oct 31 at 20:07
This is just a BFS. There's no need to keep two queues; a single one will suffice (since you're marking the nodes' colours as you go). – ShreevatsaR Oct 31 at 20:17
It depends whether you're marking the nodes themselves or partitioning the nodes into two sets without changing them; the latter is more efficient with two queues. – Pete Kirkham Oct 31 at 20:52
vote up 0 vote down

Just in case anyone's curious, here's the code I came up with:

def dfs(root, colorings):
    to_visit1 = deque()
    to_visit2 = deque()
    to_visit1.append(root)
    while len(to_visit1) != 0 or len(to_visit2) != 0:
        dfs_color(to_visit1, to_visit2, True, colorings)
        dfs_color(to_visit2, to_visit1, False, colorings)

def dfs_color(queue, opposite_queue, color, colorings):
    while len(queue) != 0:
    v = queue.pop()
    if v in adjacency_list:
        colorings[v] = color
        neighbors = adjacency_list[v]
        del adjacency_list[v]
        for neighbor in neighbors:
    	opposite_queue.append(neighbor)

Admittedly, this isn't my best code. I'm using True/False as the color because when I used recursion, it made it easy to just say not color. Of course, I had to change it because I blew my stack on bigger graphs. Also to give credit where due, this code is based on the wikipedia code for DFS.

Although as has been pointed out, I think this may just be a disguised BFS.

link|flag
vote up 2 vote down

Traverse the graph and alternate, if it doesn't succeded it means that your graph is not bipartite.

link|flag
vote up 1 vote down

From Wikipedia (http://en.wikipedia.org/wiki/Bipartite%5Fgraph)

If a bipartite graph is connected, its bipartition can be defined by the parity of the distances from any arbitrarily chosen vertex v: one subset consists of the vertices at even distance to v and the other subset consists of the vertices at odd distance to v.

Thus, one may efficiently test whether a graph is bipartite by using this parity technique to assign vertices to the two subsets U and V, separately within each connected component of the graph, and then examine each edge to verify that it has endpoints assigned to different subsets.

link|flag
I already know the graph is bipartite though. I want to divide it up into its disjoint sets. – Jason Baker Oct 31 at 18:37
1  
The "test" in this answer is a constructive procedure; when the test succeeds, you will have the two disjoint parts. – ShreevatsaR Oct 31 at 18:48
1  
@Jason, as @ ShreevatsaR says running the test will necessarily end up with the vertices labelled according to the two sets. – peter.murray.rust Oct 31 at 18:53
vote up 1 vote down

If you are sure that the graph is biparte, then you can just assign colors alternating them for traversing each vertex, as it holds that:

A graph is bipartite if and only if it is 2-colorable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.