Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
1k views

How do I implement a Bipartite Graph in Java?

UPDATE Some answers so far have suggested using an adjacency list. How would an adjacency list look like in Java? ... no pointers right :) I'm trying to implement a Bipartite Graph in Java to sort ...
4
votes
1answer
393 views

Bipartite matching in Python

Does anybody know any module in Python that computes the best bipartite matching? I have tried the following two: munkres hungarian However, in my case, I have to deal with non-complete graph ...
3
votes
1answer
189 views

Bipartite connected graph proof

A friend presented me with a conjecture that seems to be true but neither of us can come up with a proof. Here's the problem: Given a connected, bipartite graph with disjoint non-empty vertex sets ...
3
votes
3answers
100 views

(N x M) Diagramming Problem

I need an algorithm to (efficiently) solve a problem that has come up in some diagramming software that I am writing. I have two sets of nodes, N and M. Each node n0 in N has 0 to M connections to a ...
3
votes
2answers
145 views

Complete bipartite graph from objects in nested NSArray

I'm looking to write a method that takes an arbitrary number of NSArray objects, and returns a nested array of all possible complete combinations of the members of that array. As I've been told in ...
3
votes
1answer
534 views

Hopcroft–Karp algorithm in Python

I am trying to implement the Hopcroft Karp algorithm in Python using networkx as graph representation. Currently I am as far as this: #Algorithms for bipartite graphs import networkx as nx import ...
3
votes
6answers
1k views

How do I partition a bipartite graph by color?

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 ...
3
votes
5answers
473 views

C# Many To Many Relationship

So, I need some way to implement an undirected network ( I think this is the correct term ) in C# Let's say I have the following data: Foo1 <-> Bar1 Foo2 <-> Bar1 Foo2 <-> Bar2 ...
2
votes
1answer
169 views

Find a mapping in a bipartite graph

There is a square binary matrix that denotes connections in a bipartite graph. The question is: does there exist a one-to-one mapping of all rows to columns? (To be clear, if I'm using the language ...
2
votes
3answers
300 views

Maximum bipartite matching in disconnected graph

How do you find the maximum bipartite matching when your graph has several components ? Each component can be colored in two ways. How do you decide the two sets X and Y in order to run the maximum ...
2
votes
1answer
544 views

Maximum weight bipartite matching

I have a graph in form of a rectangular grid, i.e. N nodes and 2N edges, all adjacent nodes are connected. This means it is two-colourable, and hence it is possible to do bipartite matching on it. ...
1
vote
0answers
36 views

minimum bipartite matching algorithm with negative weights

I have an assignment in which i have to compute minimum cost bipartite matching algorithm. Edges can have negative weights, and as per the lecture, i have to use dijkstra algorithm to compute the ...
1
vote
4answers
248 views

Easiest way to implement a bipartite graph using Python?

I'm trying to expand my experience with Python and I'm having trouble finding the best way to implement a bipartite graph in python. Any pointers or suggestions? I am still checking if there's a ...
1
vote
2answers
112 views

Split vertices of disconnected bipartite graph equally

I'm given a graph with many seperate components. Each component is bipartite. How do I distribute the vertices into two sets A and B such that the difference between the two sets is minimal ? ...
1
vote
1answer
129 views

Weighted Bipartite Matching covering one partition

I have a problem here, that I managed to reduce to a weighted bipartite match problem. Basically, I have a bipartite graph with partitions A and B, and a set of edges with weights. In my case, |A|~=20 ...
1
vote
1answer
269 views

Partitioning adjacency matrix of bipartite graph

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!
1
vote
2answers
1k views

Combinatorics in Python

I have a sort of a one level tree structure as: Where p are parent nodes, c are child nodes and b are hypothetical branches. I want to find all combinations of branches under the constraint that ...
0
votes
2answers
77 views

Tool or library to draw bipartite graph?

I am working on things related to Graph Theory. Actually I have some data for bipartite graph and I want to test its validity by visualizing in graph form. My data is in form like (for triangle): V ...
0
votes
2answers
201 views

Bipartite graph algorithm

Consider the following question relative to graph theory : Let G a bipartite graph. To make the problem more concrete suppose G is the disjoint union of two sets, say I and S. Suppose I represents ...
0
votes
0answers
118 views

Applying the Hopcroft-Karp algorithm for minimum dissection into rectangles for c#

I've been trying to implement the algorithm as seen in the bottom answer to this question. Algorithm for finding the fewest rectangles to cover a set of rectangles I've got two lists, one containing ...
0
votes
1answer
148 views

Solving stochastic maximum bipartite matching problem

I have faced the following problem: there are two disjoint sets, A and B for each pair of elements (a, b) (a belongs to set A, where b belongs to set B) there a probability pij is known in advance. ...
-2
votes
1answer
204 views

Maximal matching in a bipartite graph [closed]

I am stuck with a maximal matching in a bipartite graph problem. The problem goes something like this: Given a board with m circular holes and given a set of n circular discs. Holes are numbered as ...