Is there any good text, books, PDF, or a website that explains how to implement a bit vector, especially in Java?
I ask this question because I would like to make my own implementation of BitSet in Java. The reason is because I want to add additional functions and settings that cannot be performed 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 have a license.
Thank!
source
share