Tagged Questions

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 ...
0
votes
0answers
115 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 ...