[algogeeks] Re: Backtracking algorithm for binpacking-like problem

2011-12-10 Thread Ania
Hi, I'm really interested in your idea as my solution is probably far from being optimal. On 11 Gru, 00:00, Lucifer wrote: > @ania, > > I think there is a faster way to solve the bin-tracking problem... i > have an idea, in case you want to discuss it do reply... > >

[algogeeks] Backtracking algorithm for binpacking-like problem

2011-12-02 Thread Ania
Hi, Here is my problem: I have a list of items (only positive integers are allowed) and fixed number of bins of identical capacity. I need to pack items (if possible) so that elements in each bin sum up to given capacity. So far I implemented recursive algorithm but I try to convert my recursive