Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, I would like to store (>10'000) arrays of boolean values (boolean[]) with length 32 to the disk and read them again later on for further computation and comparison.

Since a single array will have a length of 32, I wonder whether it makes sense to store it as an integer value to speed up the reading and writing (on a 32 bit machine). Would you suggest using BitSet and then convert to int? Or even forget about int and use bytes?

share|improve this question
1  
What is more important to you: efficient storage, or efficient (i.e. fast) read/write? – TheTerribleSwiftTomato Jun 16 '12 at 10:34
I think fast read/write is much more important in this application – navige Jun 16 '12 at 10:37
1  
Do you want to just write and read all arrays once, or do you need random access to specific arrays? – Behe Jun 16 '12 at 10:38
Yes, arrays are all read at once. No random access necessary – navige Jun 16 '12 at 10:40
1  
Would it be reasonable to see this as a 2-dimensional boolean array, i.e. boolean[10000][32]? – Stefan Haustein Jun 16 '12 at 10:45
show 5 more comments

2 Answers

up vote 10 down vote accepted

For binary storage, use ints and a DataOutputStream (DataInputStrema for reading).

I think boolean arrays are stored as byte or int arrays internally in Java, so you may want to consider avoiding the overhead and keeping the int encoding all the time, i.e. not use boolean[] at all.

Instead, have something like

public class BooleanArray32 {
  private int values;

  public boolean get(int pos) {
    return (values & (1 << pos)) != 0;
  }

  public void set(int pos, boolean value) {
     int mask = 1 << pos;
     values = (values & ~mask) | (value ? mask : 0);
  }

  public void write(DataOutputStream dos) throws IOException {
    dos.writeInt(values);
  }

  public void read(DataInputStream dis) throws IOException {
    values = dis.readInt();
  }

  public int compare(BooleanArray32 b2) {
     return countBits(b2.values & values);
  }

  // From http://graphics.stanford.edu/~seander/bithacks.html
  // Disclaimer: I did not fully double check whether this works for Java's signed ints
  public static int countBits(int v) {
    v = v - ((v >>> 1) & 0x55555555);                    // reuse input as temporary
    v = (v & 0x33333333) + ((v >>> 2) & 0x33333333);     // temp
    return ((v + (v >>> 4) & 0xF0F0F0F) * 0x1010101) >>> 24; 
  }
} 
share|improve this answer
+1, now, this is definitely better than BitSet for the OP's requisites. – Luca Geretti Jun 16 '12 at 11:11
Makes completely sense! Thanks a lot! – navige Jun 16 '12 at 11:13
Fixed an error in set and moved the static helpers to the bottom. You probably want to double-check the bit counts in the bitsInNibble helper. Let us know if everything works as expected for your task :) – Stefan Haustein Jun 16 '12 at 11:19
Update2: changed bitcount to method described here: graphics.stanford.edu/~seander/bithacks.html – Stefan Haustein Jun 16 '12 at 11:31
1  
Following this back a few more steps closer to the root source, here is Ian Ashdown's post to comp.graphics.algorithms from 15 February 1996: groups.google.com/d/msg/comp.graphics.algorithms/ZKSegl2sr4c/… – seh Jun 16 '12 at 13:55
show 1 more comment

I am under the strong impression that any compression you are going to make to pack your boolean values will increase the read and write time. (my mistake, I was clearly missing my medication). You will rather gain in terms of storage involved.

BitSet is a sensible choice on your business logic side. It internally stores a long, which you could convert to an int. However, since BitSet is prude enough not to show you its privates, you need to get each bit index in sequence. This means that I guess there is no real advantage converting to an int rather than just using bytes directly.

The roll-your-own solution of Stefan Haustein (extended as necessary to mimic BitSet) is therefore preferable for your storage requirement, since you do not incur any unnecessary overhead.

share|improve this answer
The first sentence is certainly not true: Storage is organized in bytes or larger units, and several orders of magnitude slower than memory access and simple calculations. – Stefan Haustein Jun 16 '12 at 10:43
You are correct about the organization and the memory access ratio, however you also need to consider caches. I will fix my answer to account for that. – Luca Geretti Jun 16 '12 at 10:47
1  
I don't see how caches are involved here. Note that this is not really about compression, just about storing one bit as a single bit instead of a byte or more. – Stefan Haustein Jun 16 '12 at 10:50
1  
Remarkably right, I will just cower in an angle now. – Luca Geretti Jun 16 '12 at 10:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.