vote up 3 vote down star
2

Hey folks, I'm trying to figure out an algorithm that will help me group an assortment of files of varying sizes into say, 'n' groups of approximately equal size.

Any ideas on how to achieve this?

flag

78% accept rate

3 Answers

vote up 5 vote down check
Find the target group size. This is the sum of all sizes divided by n.
Create a list of sizes.
Sort the files decreasing in size. 
for each group
    while the remaining space in your group is bigger than the first element of the list
        take the first element of the list and move it to the group
    for each element
        find the elemnet for which the difference between group size and target group size is minimal
    move this elemnt to the group

This doesn't produce optimal results, but is easy to implement and gets you good results. For the optimal solution you need an exhaustive search which is NP complete.

link|flag
vote up 2 vote down

K means might help you. It's a good starting point to research about more advanced clustering algorithms, but given that your problem is 1-dimensional, k-means should be more than enough.

link|flag
How would you solve this problem using K-means? The OP wants "groups of approximately equal size", not clusters containing items of similar size – bubaker Aug 14 at 15:10
Hmmm... are you sure of that? If the op is using size in two different contexts he ought to be more explicit :-/ Anyway I said it was a good start to find more suitable clustering methods. – fortran Aug 16 at 21:35
vote up 1 vote down

Your implicit optimization goal is most likely to minimize n, the number of groups. Then you have exactly the bin packing problem, sometimes called the cutting stock problem.

Netlib has this fortran code to solve the more general multiple knapsack problem (items have profit as well cost/weight values).

link|flag

Your Answer

Get an OpenID
or

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