I need an algorithm that will find place a gadget window in the first availble space between other gadget windows already on the screen. Basically a screen will contain gadget windows of different sizes all in different positions. When adding another gadget of fixed size to the screen I need a way to workout where the gadget can be placed, i.e in empty space between gadgets. If the algorithm wasn't able find enought space then the gadget will just get placed at the bottom of the existing gadgets.

I have thought about creating a 2 dimentional array at represents the screen containing all of the gadgets and the space that they take up but I think that there is probably a more efficent way of doing this.

The requirements are as follows

  1. Moving from left to right/top to bottom find the first available empty space that will completely fit the gadget window with a fixed margin from surrounding gadgets.
  2. If an empty space isn't found then place the gadget at the bottom left of all the other gadgets.

Thank you.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Let's assume you've found a place for the new gadget.

  1. Move it to the left, until it hits screen edge or another gadget's right edge.
  2. Move it to the top, until it hits screen edge or another gadget's bottom edge.

That means, you can just try all combinations of x from a set {0, g1.right, g2.right, .., gn.right} and all combinations of y from a set {0, g1.bottom, g2.bottom, .., gn.bottom}.

Pretty simple and gives O(n^3) complexity. (n^2 from above and another n to verify that position is available)

link|improve this answer
Thanks for your answer, its not quite what I was looking for, perhapes because I didn't explain the problem clearly enough so I've updated the question. – no spoon Feb 5 '11 at 6:41
feedback

Your Answer

 
or
required, but never shown

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