I need to represent an array of integers using BitSet. Can somebody explain me the logic required to do this ?
|
|
You can represent a set of integers using Basically, set the
|
|||
|
|
|
I think the logic would be: Run through the integer array, test every bit and set this bit in the bitset like bitset.set(array_pos+bit_pos) |
|||
|
|
|
first thought: |
||||
|
|