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

I'm looking for a very compact way of storing a dense variable length bitarray in Java. Right now, I'm using BitSet, but it seems to use on average 1.5*n bits of storage space for a bit vector of size n. Typically, this isn't a problem, but in this case the bitarrays being stored are a pretty significant part the memory footprint of the application. So, it would really help to get them to be a little bit smaller.

The space required by BitSet seems to be due to the fact that the array of longs used to back the data structure tends to double each time it is expanded to hold more bits:

// BitSet's resizing code
private void ensureCapacity(int wordsRequired) {
  if (words.length < wordsRequired) {
    // Allocate larger of doubled size or required size
    int request = Math.max(2 * words.length, wordsRequired);
    words = Arrays.copyOf(words, request);
    sizeIsSticky = false;
  }
}

I could write my own alternative implementation of BitSet that scales the backend data structure more conservatively. But, I'd really hate to duplicate functionality that is already in the standard class libraries if I don't have to.

share|improve this question
1  
I'd have a hard time imagining this would be in the standard Java library. It's not really what it's designed for. I bet you could find a third party library though. – Pace Jan 19 '10 at 3:59
I think in your case custom implementation would be a better bet. – cx0der Jan 19 '10 at 4:03

2 Answers

up vote 16 down vote accepted

If you create the BitSet using the constructor BitSet(int nbits) you can specify the capacity. If you guess the capacity wrong, and go over, it will double the size.

The BitSet class does have a trimToSize method which is private, and is called by writeObject and clone(). If you clone your object, or serialize it, it will trim it to the correct length (assuming the class over expanded it through the ensureCapacity method).

share|improve this answer
7  
Yup. Note you don't actually need to use the copied version. The original is trimmed(!). – Tom Hawtin - tackline Jan 19 '10 at 4:39
That's pretty clever. Thanks! – dmcer Jan 19 '10 at 4:41

You might benefit from compressed BitSet alternatives. See for example:

http://code.google.com/p/javaewah/

http://code.google.com/p/sparsebitmap/

share|improve this answer

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.