The packing tag has no wiki summary.
67
votes
8answers
12k views
Algorithm needed for packing rectangles in a fairly optimal way
Ive got a bunch of rectangular objects which I need to pack into the smallest space possible (the dimensions of this space should be powers of two).
I'm aware of various packing algorithms that will ...
3
votes
4answers
724 views
fitting n variable height images into 3 (similar length) column layout
I'm looking to make a 3-column layout similar to that of piccsy.com. Given a number of images of the same width but varying height, what is a algorithm to order them so that the difference in column ...
1
vote
1answer
680 views
Packing problem revisited
I'm developing a game and I found a problem that I have to solve to handle the layout of a component which resembles me a packing problem.
To summarize what I need to do suppose I've got a space ...
12
votes
4answers
6k views
Packing rectangular image data into a square texture
I have N items of 2D image data that will be rectangular and I want to pack them into a single power of 2 texture as efficiently as possible.
A simple non-efficient and naive implementation of an ...
23
votes
1answer
901 views
Why doesn't C++ make the structure tighter?
For example, I have a class,
class naive {
public:
char a;
long long b;
char c;
int d;
};
and according to my testing program, a to d are built one after another, like
a-------
...
6
votes
4answers
2k views
Union and struct packing problem
I'm writing some software where each bit must be exact(it's for the CPU) so __packed is very important.
typedef union{
uint32_t raw;
struct{
unsigned int present:1;
unsigned int rw:1;
unsigned ...
7
votes
4answers
2k views
Fitting rectangles together in optimal fashion
I was wondering if anyone knows of any algorithms suited to fitting together N number of rectangles of unknown size into the smallest possible containing rectangle.
By optimal I mean with reducing ...
5
votes
8answers
805 views
Text packing algorithm
I bet somebody has solved this before, but my searches have come up empty.
I want to pack a list of words into a buffer, keeping track of the starting position and length of each word. The trick is ...
2
votes
3answers
1k views
Bin Packing - Brute force recursive solution - How to make it faster
I have an array which contains a list of different sizes of materials : {4,3,4,1,7,8} . However, the bin can accomodate materials upto size 10. I need to find out the minimum number of bins needed to ...
8
votes
8answers
3k views
C++ Data Member Alignment and Array Packing
During a code review I've come across some code that defines a simple structure as follows:
class foo {
unsigned char a;
unsigned char b;
unsigned char c;
}
Elsewhere, an array of these ...
5
votes
6answers
3k views
Piece together several images into one big image
I'm trying to put several images together into one big image, and am looking for an algorithm which determines the placing most optimally. The images can't be rotated or resized, but the position in ...
2
votes
4answers
1k views
How to pack squares into circles?
I need to find the maximum number of whole squares of a given size that can be packed into a circle of a given radius. I don't need a solution. I just need some kind of a starting idea. The ...
6
votes
5answers
10k views
Java Convert 4 bytes to int
i was wondering if the solution for this documented here is still the solution or is there any other way getting an int from 4 bytes?
thank you.
EDIT: im getting the byte[] from sockets .read
EDIT: ...
10
votes
3answers
1k views
Fast block placement algorithm, advice needed?
I need to emulate the window placement strategy of the Fluxbox window manager.
As a rough guide, visualize randomly sized windows filling up the screen one at a time, where the rough size of each ...
9
votes
1answer
645 views
What is the most efficient way in Java to pack bits into byte[] and read it back?
I currently use these two functions to pack and read bits in a byte array. Wondering if anybody has any better ideas or faster ways to do it?
Edited the program with a few more optimization and ...
6
votes
4answers
2k views
Maximum packing of rectangles in a circle
I work at a nanotech lab where I do silicon wafer dicing. (The wafer saw cuts only parallel lines) We are, of course, trying to maximize the yield of the die we cut. All the of die will be equal size, ...
5
votes
6answers
2k views
Packing rectangles for compact representation
I am looking for pointers to the solution of the following problem: I have a set of rectangles, whose height is known and x-positions also and I want to pack them in the more compact form. With a ...
8
votes
3answers
503 views
How to make class in C#, that can be cast to DateTime?
How can I make class, that can be cast to DateTime. But I need to cast my class, when it packed. For example:
object date1 = new MyDateTime();
DateTime date2 = (DateTime)date1;
I need directly this ...
7
votes
9answers
3k views
Getting different header size by changing window size
I have a C++ program representing a TCP header as a struct:
#include "stdafx.h"
/* TCP HEADER
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 ...
3
votes
1answer
723 views
Packing items into fixed number of bins
I am looking for an algorithm that will solve my problem in the most efficient way.
Problem description:
I have a list of items (only positive integers are allowed) and fixed number of bins of ...
2
votes
1answer
657 views
Can someone explain Gtk2 packing?
I need to use Gtk2 for a project. I will be using python/ruby for it. The problem is that packing seems kind of mystical to me. I tried using a VBox so that I could have the following widgets in my ...
1
vote
4answers
818 views
How to pack a hexadecimal value in an unsigned char variable in a C program?
I have a hexadecimal value "F69CF355B6231FDBD91EB1E22B61EA1F" in a string and I am using this value in my program by hardcoding the value in an unsigned char variable like this:
unsigned char a[] = { ...