Java: Count number of bits set in a java.util.BitSet

9.9k Views Asked by At

Any quick method to count the number of set bits in a BitSet other than the usual 'keep a counter' method?

3

There are 3 best solutions below

2
On BEST ANSWER

The cardinality() method returns the number of set bits.

0
On

(Assuming you don't want to call cardinality())

int count = 0; 
for (int i = bs.nextSetBit(0); i >= 0; i = bs.nextSetBit(i+1)) {
    count++;
}

see javadoc

4
On
BitSet B1 = new BitSet(3);
B1.set(0);
B1.cardinality();

Output:

1