Tagged Questions
0
votes
3answers
21 views
Packing characters into bits?
I am trying to pack characters into bits in terms of 0's and 1's.
I have looked up many websites about bit-packing but I did not get any of them.
I just want a simple idea about bit-packing, and how ...
0
votes
2answers
67 views
Bin packing bruteforce method
I need to make program that solves bin packing problem, but I already made first fit and greedy algorithms, but my lecturer says in some cases it won't find the minimal solution to the problem. So i ...
9
votes
1answer
635 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 ...
4
votes
1answer
710 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 ...
0
votes
1answer
531 views
Java Packaging Woes
OK so I decided to work somemore on my test files in Java.. I decided to .rar up the folder from my Home PC and bring it to my Work PC. The problem? When I compile -- I get:
C:\Documents and ...
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: ...
0
votes
4answers
396 views
In java is it possible to pack a integer number that is expected not to be negative & be final (not overflow) into a short?
"Unsigned int" into a short and back. Is this possible? How to do it if so?
Grrrr. I forgot how signed numbers are implemented. The question makes no sense. Thanks anyway. I was going to downvote ...
0
votes
2answers
2k views
Java JFrame pack() issue
I am attempting to overlay images on top of a background image using the standard java utilities. See the pictures below...
I have code that seems to create the background image (can you verify that ...
1
vote
1answer
1k views
circle packing - java
I have a task to draw a circle and then fill in with the most amount of circles without touching the sides. I can draw the circle, and I can make loops to pack the circle in a hexagonal/honeycomb ...