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 the vertical lines and the other one containing horizontal lines.

I'm using a simple structure for my lines that has just two Points.

And then I have another list of Points that tells me which lines have intersected, the X member being representative of an index in the horizontal list and the Y member being representative of an index in the vertical list.

I can't seem to quite grasp how I'm supposed to go about writing this in c# and how to use the data I've got and put into this algorithm.

link|improve this question
So far you have only made factual statements. Did you have a question that you wanted to ask? – Eric Lippert Jul 21 '11 at 14:43
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.