Tagged Questions
The packing tag has no wiki summary.
34
votes
7answers
4k 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 ...
19
votes
1answer
555 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-------
...
12
votes
3answers
222 views
Close-packing points in the plane?
For starters, no, this isn't a homework question. :-) It's just been something that's bothering me for a while.
Suppose that I have a complete, undirected graph G with a distance associated with ...
12
votes
3answers
466 views
Algorithm putting point into square with maximal minimum distance
I'm stuck on this: Have a square. Put n points into this square so the minimal distance (not necessary the average distance) is the highest possible.
I'm looking for an algorithm which would be able ...
10
votes
2answers
431 views
Algorithm/approximation for combined independent set/hamming distance problem
Input: Graph G
Output: several independent sets, so that the membership of a node to all independent sets is unique. A node therefore has no connections to any node in its own set. Here is an example ...
9
votes
4answers
259 views
Packing arbitrary polygons within an arbitrary boundary
I was wondering if anybody could point me to the best algorithm/heuristic which will fit my particular polygon packing problem. I am given a single polygon as a boundary (convex or concave may also ...
8
votes
1answer
221 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 ...
8
votes
3answers
696 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 ...
8
votes
3answers
3k 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 ...
7
votes
2answers
297 views
Algorithm to fit windows on desktop (like tile)
I searching algorithm to solve problem like this:
I have few windows, each window can be moved and re sized but with specified ratio between width and height, eg. 2:1 (height:width).
Each window ...
7
votes
4answers
791 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 ...
7
votes
5answers
423 views
Any tools available for packing 32bit/64bit executables together?
I really like the way the SysInternals utilities (e.g. Process Explorer) handle 64bit compatibility. It looks like the 32bit executable has the 64bit version embedded in it, and extracts it if ...
6
votes
2answers
1k views
Pack four bytes in a float
I'm writing a shader (HLSL), and I need to pack a color value into the R32 format. I've found various pieces of code for packing a float into the R8G8B8A8 format, but none of them seem to work in ...
6
votes
3answers
167 views
binary16 in Python
The struct module is useful when you're trying to convert data to and from binary formats. However, recently I came across a file format specification that uses the binary16 floating point format. I ...
6
votes
8answers
1k 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
4answers
669 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
8answers
537 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 ...
5
votes
7answers
1k 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 ...
5
votes
9answers
2k views
Why does a bit field of type “unsigned short” pack into a struct differently to an “unsigned int:16”
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 ...
4
votes
5answers
214 views
use of the bitwise operators to pack multiple values in one int
Low level bit manipulation has never been my strong point. I will appreciate some help in understanding the following use case of bitwise operators.Consider...
int age, gender, height, packed_info;
...
4
votes
1answer
509 views
Given a number of rectangles that can be rotated, find an enclosing rectangle of minimum area
So, I'm trying to implement an algorithm that takes in a number of rectangles as input and tries to pack them into a rectangle of minimum area. The rectangles can all be rotated by 90 degrees.
I ...
4
votes
3answers
377 views
Why does a struct consisting of a char, short, and char (in that order), when compiled in C++ with 4-byte packing enabled, come to a 6-byte struct?
I thought I understood how C/C++ handled struct member alignment. But I'm getting strange results for a particular arrangement in Visual Studio 2008 and 2010.
Specifically, I'm finding that a struct ...
4
votes
5answers
3k 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: ...
4
votes
7answers
1k views
C++ packing a typedef enum
typedef enum BeNeLux
{
BELGIUM,
NETHERLANDS,
LUXEMBURG
} _ASSOCIATIONS_ BeNeLux;
When I try to compile this with C++ Compiler, I am getting errors, but it seems to work fine with a C ...
4
votes
3answers
548 views
How is the organization of the 12 Bit RGB color format?
I know that the 12 bit RGB color pallette format , has 4 bit for each color R,G,B.
But how is the structure of the raw data i.e.
1.) Does each color have a byte corresponding to it which in turn has ...
4
votes
6answers
2k 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 ...
3
votes
3answers
142 views
Counting overhead due to packing in C (gcc/g++)
I'd like to count/sum up the overhead in an object file due to packing (and, ideally, have gcc minimize it for me).
For example, consider the following structure (32 bit x86, gcc):
struct a {
...
3
votes
3answers
639 views
Algorithm to organise rectangles in the fixed rectangular container
My problem is pretty similar to 2D Knapsack problem, or cutting stock with one exception... the rectangles that fit into the container can be resized and cropped. No rotation is allowed though.
The ...
3
votes
2answers
474 views
What's an elegant algorithm for fitting differently sized rectangles into a circle?
I have a bunch of rectangles of variable size which I need to fit together roughly into a circle, presumably with the largest ones at the center.
NB. The circle is not of a fixed size - that's just ...
3
votes
2answers
225 views
kkrunchy - how to get rid of the tls data in a Delphi executable?
Just for fun and giggles I'm trying to create a 64k intro in delphi. One of the best executable packers for applications of this size is kkrunchy by Farbrausch. However, when I run it on an (otherwise ...
3
votes
2answers
232 views
Packing problem
I want to write a little helper utility to organize my digitized audiobooks collection.
I have a set of folders which I need to write to CDs. The folders can not be split: each folder goes onto one ...
3
votes
5answers
488 views
Packing 32bit floats into 30 bits (c++)
Here are the goals I'm trying to achieve:
I need to pack 32 bit IEEE floats into 30 bits.
I want to do this by decreasing the size of mantissa by 2 bits.
The operation itself should be as fast as ...
3
votes
6answers
2k views
C/C++ packing signed char into int
I have need to pack four signed bytes into 32-bit integral type.
this is what I came up to:
int32_t byte(int8_t c) { return (unsigned char)c; }
int pack(char c0, char c1, ...) {
return byte(c0) | ...
3
votes
4answers
1k 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 ...
2
votes
3answers
147 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 ...
2
votes
1answer
122 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
131 views
Automatically Pack Javascript/CSS from Amazon S3?
I'm moving my javascript and css files to Amazon S3 - can anyone suggest an efficient way to automatically pack/minimize the files without defeating the purpose of hosting them on S3?
Atm, I have my ...
2
votes
4answers
295 views
fitting n varible 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 ...
2
votes
4answers
225 views
More interactive ZODB packing
Current ZMI management "Pack database" functionality is little rough.
1) Could it be possible to have some kind of progress indicator for web UI? E.g. one telling how many minutes/hours are left ...
2
votes
3answers
434 views
C++ class/structure data member offset as constant expression
Taking offset of a data member is as easy as this:
#define MEMBER_OFFSET(Type, Member) \
((unsigned long)(((char *)&((Type *)0)->Member) - (char *)0));
I want to make this a constant ...
2
votes
2answers
207 views
Detecting UPX programmatically
I'm trying to figure out how to detect whether a binary has been compressed with UPX. I am using a simple CRC to detect whether my app was in any way changed and if the CRC failed on the size due to a ...
2
votes
4answers
177 views
Packing differently sized chunks of data into multiple bins
EDIT: It seems like this problem is called "Cutting stock problem"
I need an algorithm that gives me the (space-)optimal arrangement of chunks in bins. One way would be put the bigger chunks in ...
2
votes
1answer
394 views
How can I fill an outline with predefined tangram shapes?
I am interested in using shapes like these:
Usually a tangram is made of 7 shapes(5 triangles, 1 square and 1 parallelogram).
What I want to do is fill a shape only with tangram shapes, so at this ...
2
votes
3answers
490 views
Text Formatting in Ruby (For Packing Slips)
I need to generate formatted text packing slips for a Ruby on Rails project I'm working on. I'm considering using Ruport or just formatting it myself in a string and outputting it to text. The only ...
2
votes
1answer
64 views
How to structure database for multilevel packing items
I want to make an inventory system where items have multilevel packings e.g A carton has medium boxes , medium boxes has small boxes and small boxes has 2 items. Please tell how to handle it by using ...
2
votes
2answers
89 views
Does the concept of coupling two different items of data by storing them in a single variable have a name?
For example, if I have a 64-bit variable and store two 32-bit items of data in it, perhaps for the purposes of SIMD processing, is there a name to describe the logical coupling of those two items of ...
2
votes
1answer
887 views
Bit packing in C
I'm trying to convert an RGB image to an ARGB image, basically just adding 255 in for the alpha channel. I was wondering if there is any pack method to do this without iteration? So to iterate over my ...
2
votes
2answers
96 views
Suggestions on creating & deploying minimized JavaScript with NAnt?
Do you have any suggestions or examples on how to deploy minimized (min) versions of JavaScript files using NAnt?
Are there any good command line applications, or scripts to assist with minimizing or ...
1
vote
1answer
25 views
python tkinter packing
Could someone please explain why when you have an plain widget as one line Code A works
Entry(root, width=10).pack(side=LEFT,anchor=W)
but when you name it or attach a command to it, Code A no ...
1
vote
5answers
114 views
unused memory using 32 bit integer in C
I have the folowing struct of integers (32 bit environment):
struct rgb {
int r;
int g;
int b;
};
Am I correct in saying that, since rgb component values (0-255) only require 8-bits(1 ...