I have a BitSet
and the info in it looks like this:
00011110111110
Is there any efficient method to get for example max number of continuous bits set? In the example above it would be 5
. Or is a loop over the bit set efficient? I am just wondering if there is a another faster way
For sets of n bits there is a nice algorithm but it requires a shift of bits. Maybe doable with
BitSet.toLongArray
andvalueOf(long[])
. In incomplete code:The while loop will iterate upto maxLength.
Using
nextClearBit
iterates through all bits 0 and might be faster.Personally I would need to time both solutions - for surprises.