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

Is there some good text, books, pdf or website that explains how to implement a bit vector, especially in Java?

I ask this question because I would like to make my own BitSet implementation in Java. The reason is that I want to add aditional features and tweak that cannot be done if I modify the BitSet Java class from java.util. Moreover, I want to make my own implementation so that I can use it in my open-source project without having to deal with licenses.

Thanks!

share|improve this question
Apache Mahout has an open source bitset. – bmargulies Oct 22 '11 at 18:40
why do not use other bitsets and just inherit them? – Saeed Amiri Oct 22 '11 at 18:56

1 Answer

up vote 4 down vote accepted

Apache Mahout provides the org.apache.mahout.cf.taste.impl.common.BitSet class.

Wikipedia has general info on bit arrays.

Java also has java.util.BitSet (source available from both Java SE JDK 6 and OpenJDK). This article discusses performing bit-wise operations on BitSet.

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.