Top "Bin-packing" questions

In the bin packing problem, objects of different volumes must be packed into a finite number of bins or containers each of volume V in a way that minimizes the number of bins used.

How is 2D bin packing achieved programmatically?

There are a few similar questions on stackoverflow, but none of them seem to provide a tangible answer that someone …

algorithm bin-packing
3 dimensional bin packing algorithms

I'm faced with a 3 dimensional bin packing problem and am currently conducting some preliminary research as to which algorithms/heuristics …

algorithm language-agnostic mathematical-optimization np-hard bin-packing
3d bin packing algorithm

I am looking for a deterministic implementation for any 3d bin packing algorithm, i.e. for packing many small and …

algorithm language-agnostic math bin-packing
Is there a c++ source/lib to solve 2D Bin Packing with a rectangular bin (not square) and rotation?

As the title already says I need C/C++ sourcecode or a library that I can use to solve the …

c++ algorithm bin-packing